From fc65f4e8326519e9b4e0e8f81aeb330fe725deca Mon Sep 17 00:00:00 2001 From: David Venegas Date: Tue, 23 Nov 2021 21:07:42 -0600 Subject: [PATCH] Project completed, scrapping rtings to get the best tv's 2021 based on reviews about tests. --- Scrapping.ipynb | 1666 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1666 insertions(+) create mode 100644 Scrapping.ipynb diff --git a/Scrapping.ipynb b/Scrapping.ipynb new file mode 100644 index 0000000..422aed7 --- /dev/null +++ b/Scrapping.ipynb @@ -0,0 +1,1666 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "a48ad534-f822-4e60-8bdb-a2f5a9666444", + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "import pandas as pd\n", + "import time\n", + "import random\n", + "import asyncio\n", + "from bs4 import BeautifulSoup \n", + "from selenium import webdriver\n", + "from selenium.webdriver.common.keys import Keys\n", + "from selenium.webdriver.common.by import By\n", + "from selenium.webdriver.common.action_chains import ActionChains\n", + "from selenium.webdriver.remote.webelement import WebElement\n", + "import nest_asyncio\n", + "nest_asyncio.apply()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\David\\AppData\\Local\\Temp/ipykernel_3956/2295237839.py:2: DeprecationWarning: executable_path has been deprecated, please pass in a Service object\n", + " driver = webdriver.Chrome('C:\\Program Files\\Python_Drivers\\chromedriver.exe')\n" + ] + } + ], + "source": [ + "url = 'https://www.rtings.com/tv/reviews/best/tvs-on-the-market'\n", + "driver = webdriver.Chrome('C:\\Program Files\\Python_Drivers\\chromedriver.exe')\n", + "driver.get(url)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "#Getting all tvs with good reviews\n", + "best_tvs = driver.page_source\n", + "soup_tv = BeautifulSoup(best_tvs,'html.parser')\n", + "winner_tvs = soup_tv.select('div[class = \"recommendation_page-body\"] > ol > li')\n", + "recommended_tvs = soup_tv.select('div[class = \"recommendation_page-section\"] > div > ul > li ')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def append_details(pLists, winner = False, href = False):\n", + " list_details = []\n", + " if href:\n", + " for link in pLists:\n", + " link_parse = link.split('/')\n", + " link_model = link_parse[-1]\n", + " link_brand = link_parse[-2]\n", + " list_details.append({'model': link_model, 'brand':link_brand, 'url': link, 'winner':winner })\n", + " return list_details" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "#################################################\n", + "# Getting links of winners and recommended ones #\n", + "#################################################\n", + "\n", + "#Getting links to visit\n", + "# winners\n", + "links = ['http://rtings.com'+ y['href'] for x in winner_tvs for y in x.select('div > div > div > a')]\n", + "# recommended\n", + "links_rec = ['http://rtings.com'+ y['href'] for x in recommended_tvs for y in x.select('div > ul > li > a')]\n", + "tv_details = append_details(links, True, True) + append_details(links_rec, False, True) \n", + "\n", + "tv_details1 = tv_details.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "async def get_content(url):\n", + " req = loop.run_in_executor(None, requests.get, url)\n", + " response = await req\n", + " soup = BeautifulSoup(response.text,'html.parser')\n", + " return soup " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "http://rtings.com/tv/reviews/lg/c1-oled\n", + "http://rtings.com/tv/reviews/sony/a90j-oled\n", + "http://rtings.com/tv/reviews/samsung/qn90a-qled\n", + "http://rtings.com/tv/reviews/hisense/u8g\n", + "http://rtings.com/tv/reviews/hisense/u6g\n", + "http://rtings.com/tv/reviews/sony/a80j-oled\n", + "http://rtings.com/tv/reviews/tcl/6-series-r646-2021-qled\n", + "http://rtings.com/tv/reviews/vizio/p-series-quantum-x-2020\n", + "http://rtings.com/tv/reviews/samsung/qn85a-qled\n", + "http://rtings.com/tv/reviews/sony/x85j\n", + "http://rtings.com/tv/reviews/vizio/m7-series-quantum-2021\n", + "http://rtings.com/tv/reviews/lg/g1-oled\n", + "http://rtings.com/tv/reviews/lg/qned90\n", + "http://rtings.com/tv/reviews/tcl/5-series-s546-2021-qled\n", + "http://rtings.com/tv/reviews/hisense/u7g\n", + "http://rtings.com/tv/reviews/sony/x95j\n", + "http://rtings.com/tv/reviews/vizio/p-series-quantum-2021\n", + "http://rtings.com/tv/reviews/lg/a1-oled\n", + "http://rtings.com/tv/reviews/sony/x90j\n" + ] + } + ], + "source": [ + "time.sleep(random.randint(7,15))\n", + "driver.quit()\n", + "\n", + "loop = asyncio.get_event_loop()\n", + "for j in range( len(tv_details) ):\n", + " soup = loop.run_until_complete(get_content(tv_details[j]['url']) )\n", + " #getting all clasification rating\n", + " print(tv_details[j]['url'])\n", + " rating_key_list = []\n", + " reviews = {}\n", + " category = \"\"\n", + " # Getting all overview about each tv\n", + " for overview in soup.select('div[class = \"usage_card-details\"] > div > div'): #main div\n", + " #getting rating\n", + " for rating in overview.select('div > span'):\n", + " review = rating.text.strip('\\n ')\n", + " if review != '':\n", + " rating_key_list.append(review)\n", + "\n", + " try:\n", + " if len(rating_key_list) > 0:\n", + " category = rating_key_list[1] # getting a category that is used in followings for loops\n", + " reviews[category] = {'Value':rating_key_list[0]}\n", + " rating_key_list.clear()\n", + " except:\n", + " pass\n", + " \n", + " #getting summary per rating\n", + " for summary in overview.select('div > div > div > p'):\n", + " reviews[category]['Opinion'] = summary.text\n", + "\n", + " for summary in overview.select('div[class=\"product_page-summary-group\"]'):\n", + " pov = summary.text.strip().split('\\n')\n", + " pro_or_con = ''\n", + " for pov1 in pov:\n", + " if pov1 != '' and pov1 != ' ':\n", + " if pov1 == 'Pros':\n", + " pro_or_con = 'Pros'\n", + " reviews[category][pro_or_con] = []\n", + " elif pov1 == 'Cons':\n", + " pro_or_con = 'Cons'\n", + " reviews[category][pro_or_con] = []\n", + " else:\n", + " reviews[category][pro_or_con].append(pov1)\n", + " \n", + " tv_details1[j]['Overview'] = reviews\n", + "\n", + " #Getting all inputs\n", + " inputs_list = []\n", + " for inputs in soup.select('div[data-id=\"7629\"] > div span'):\n", + " if inputs.text.strip() != '—':\n", + " inputs_list.append(inputs.text.strip())\n", + "\n", + " inputs_list = inputs_list[1:]\n", + " tv_details1[j]['Inputs'] = dict(zip(inputs_list[::2], inputs_list[1::2]))" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'model': 'c1-oled',\n", + " 'brand': 'lg',\n", + " 'url': 'http://rtings.com/tv/reviews/lg/c1-oled',\n", + " 'winner': True,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.8',\n", + " 'Opinion': \"The LG C1 OLED is an amazing all-around TV. It has stunning picture quality thanks to its near-infinite contrast ratio, which is great for watching movies or gaming in the dark. The near-instantaneous response time makes motion look exceptionally clear in fast-moving games and sports, and its low input lag is great for gaming or use as a PC monitor. While it doesn't get very bright for HDR, its high contrast helps it deliver an impressive HDR experience.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Near-instantaneous response time.',\n", + " 'Wide viewing angles.',\n", + " 'Perfect blacks with no visible blooming.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for very bright or sunny rooms.']},\n", + " 'Movies': {'Value': '9.3',\n", + " 'Opinion': \"The LG C1 is fantastic for watching movies. Its near-infinite contrast ratio produces deep inky blacks that look amazing in a dark room, with no distracting blooming around bright objects. It does a great job upscaling lower-resolution movies, great if you have a collection of Blu-rays or DVDs, and it can remove judder from all sources. Unfortunately, the TV's near-instantaneous response time causes stutter that may bother some people.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Perfect blacks with no visible blooming.',\n", + " 'Upscales content without issue.'],\n", + " 'Cons': ['Low frame rate content may appear to stutter.']},\n", + " 'TV Shows': {'Value': '8.2',\n", + " 'Opinion': \"The LG C1 OLED is great for watching TV shows in a bright room. It has incredibly wide viewing angles, so the image is accurate, even if you have a wide seating arrangement or if you like to move around while watching TV. Unfortunately, it's not bright enough to overcome direct sunlight, but most people won't have any issues with it. On the upside, it has incredible reflection handling and upscales low-resolution content without issue.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Wide viewing angles.',\n", + " 'Upscales content without issue.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for very bright or sunny rooms.']},\n", + " 'Sports': {'Value': '8.7',\n", + " 'Opinion': \"The LG C1 is an excellent TV for watching sports. Thanks to its near-instantaneous response time, motion looks exceptionally clear. It upscales cable channels well, with no noticeable issues. If you like to watch games with friends, its wide viewing angles provide an accurate image even from the side. That said, its brightness is limited, so it's not great if you have a room with lots of direct sunlight.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Near-instantaneous response time.',\n", + " 'Wide viewing angles.',\n", + " 'Upscales content without issue.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for very bright or sunny rooms.']},\n", + " 'Video Games': {'Value': '9.2',\n", + " 'Opinion': \"The LG C1 OLED is incredible for playing video games. It has very little input lag and a near-instantaneous response time for smooth motion. It supports FreeSync, G-SYNC, and HDMI Forum VRR, and its near-infinite contrast makes games look stunning when playing in a dark room. Unfortunately, the risk for burn-in goes up with extended exposure to static elements like a game HUD, but we don't expect it to be an issue if you watch and play varied content.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Near-instantaneous response time.',\n", + " 'Very low input lag.',\n", + " 'Perfect blacks with no visible blooming.'],\n", + " 'Cons': ['Risk of permanent burn-in.']},\n", + " 'HDR Movies': {'Value': '8.6',\n", + " 'Opinion': \"The LG C1 is amazing for watching movies in HDR. It supports HDR10 and Dolby Vision but not HDR10+. It's unfortunately not very bright, so it may not bring out the brightest highlights, but its near-infinite contrast ratio still allows it to deliver an impressive HDR experience. It also has a wide color gamut but doesn't map every color well, which most people won't notice, but some colors may appear inaccurate.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Perfect blacks with no visible blooming.',\n", + " 'Wide color gamut.'],\n", + " 'Cons': ['Limited brightness for HDR content.',\n", + " 'Color mapping is slightly off.']},\n", + " 'HDR Gaming': {'Value': '9.0',\n", + " 'Opinion': \"The LG C1 OLED is a superb TV for HDR gaming. Motion looks exceptionally clear thanks to the near-instantaneous response time, and input lag is very low. Unfortunately, its HDR brightness is just okay, so the brightest highlights don't stand out as well as they should, but the near-infinite contrast ratio still helps deliver an impressive HDR experience. There's a risk of permanent burn-in, but we don't expect this to be an issue if you watch and play varied content.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Very low input lag.',\n", + " 'Perfect blacks with no visible blooming.',\n", + " 'Wide color gamut.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Limited brightness for HDR content.',\n", + " 'Color mapping is slightly off.']},\n", + " 'PC Monitor': {'Value': '8.9',\n", + " 'Opinion': \"The LG C1 TV is excellent for use as a PC monitor. It has wide viewing angles, so the image doesn't look washed out at the edges when sitting up close. It also has a very low input lag and exceptionally fast response time. Finally, it can display proper chroma 4:4:4, which is important for clear text, and it supports FreeSync and G-SYNC VRR. Unfortunately, static elements like a desktop interface increase the risk of permanent burn-in, but there are options to reduce the likelihood of this issue.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Wide viewing angles.',\n", + " 'Displays proper chroma 4:4:4.',\n", + " 'Very low input lag.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for very bright or sunny rooms.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '3',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'a90j-oled',\n", + " 'brand': 'sony',\n", + " 'url': 'http://rtings.com/tv/reviews/sony/a90j-oled',\n", + " 'winner': True,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.8',\n", + " 'Opinion': \"The Sony A90J is an amazing TV for mixed usage. It delivers exceptional picture quality for movies and TV shows, and its near-instantaneous response time results in smooth motion for sports and video games. While it doesn't get as bright as an LED TV, it's bright enough to bring out most highlights in HDR, aided by its near-infinite contrast ratio. Unfortunately, there's a risk for permanent burn-in, though it shouldn't be an issue if you watch varied content.\",\n", + " 'Pros': ['Near-perfect black levels.',\n", + " 'Image stays accurate at most viewing angles.',\n", + " 'Motion looks exceptionally smooth.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for some.']},\n", + " 'Movies': {'Value': '9.4',\n", + " 'Opinion': 'The Sony A90J is a fantastic choice for watching movies. With its near-infinite contrast ratio, it can produce deep, inky blacks with perfect uniformity. It has no issues upscaling lower resolution content, like DVDs or Blu-rays, and it removes 24p judder from any source. Unfortunately, the extremely quick response time can cause stuttering in lower frame rate content like movies.',\n", + " 'Pros': ['Near-perfect black levels.',\n", + " 'Removes 24p judder.',\n", + " 'Upscales low resolution content without issue.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Low frame rate content may stutter.']},\n", + " 'TV Shows': {'Value': '8.2',\n", + " 'Opinion': \"The Sony A90J is great for watching TV shows. It has fantastic reflection handling, so glare shouldn't be an issue, despite its lower brightness. The Google TV platform is also smooth and lets you access all your apps and shows from one smart hub. It has wide viewing angles, which is great if you watch TV at an angle. Unfortunately, it may be susceptible to permanent burn-in with static elements like a news banner or logo.\",\n", + " 'Pros': ['Fantastic reflection handling.',\n", + " 'Image stays accurate at most viewing angles.',\n", + " 'Google TV platform is smooth and easy to use.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for some.']},\n", + " 'Sports': {'Value': '8.6',\n", + " 'Opinion': \"The Sony A90J is excellent for watching sports. Its near-instant response time results in smooth motion, and it has a Black Frame Insertion feature to further reduce blur. It also has wide viewing angles, which is great for watching the game with friends. While it isn't the brightest TV, it has fantastic reflection handling, so glare shouldn’t be an issue. That said, there's a risk of permanent burn-in, especially with static elements like a score box or channel logo.\",\n", + " 'Pros': ['Fantastic reflection handling.',\n", + " 'Image stays accurate at most viewing angles.',\n", + " 'Motion looks exceptionally smooth.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'May not be bright enough for some.']},\n", + " 'Video Games': {'Value': '9.1',\n", + " 'Opinion': \"The Sony A90J is fantastic for playing video games. It has a near-instantaneous response time that results in exceptionally clear motion, and its exceptionally high contrast ratio is great for gaming in the dark. Unfortunately, it lacks VRR and ALLM support, though it's meant to receive it in a future firmware update.\",\n", + " 'Pros': ['Near-perfect black levels.',\n", + " 'Motion looks exceptionally smooth.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Risk of permanent burn-in.', 'No VRR support currently.']},\n", + " 'HDR Movies': {'Value': '8.9',\n", + " 'Opinion': \"The Sony A90J is excellent for watching movies in HDR. It has a wide color gamut, and its perfect black levels create a near-infinite contrast ratio, which helps make highlights pop, despite the lower brightness that's typical of OLEDs. That said, the ceiling in brightness means that the very brightest details may be lost.\",\n", + " 'Pros': ['Near-perfect black levels.',\n", + " 'Removes 24p judder.',\n", + " 'Upscales low resolution content without issue.',\n", + " 'Wide HDR color gamut.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Low frame rate content may stutter.',\n", + " 'May not be bright enough for some.']},\n", + " 'HDR Gaming': {'Value': '8.9',\n", + " 'Opinion': \"The Sony A90J is excellent for HDR gaming thanks to its extremely fast response time and perfect black levels. While it doesn't get as bright in HDR as most LED TVs, it's among the brightest OLEDs we've tested. It also has a wide color gamut. However, some gamers may be disappointed by its lack of VRR and ALLM support, although it's meant to be added in a future update.\",\n", + " 'Pros': ['Near-perfect black levels.',\n", + " 'Motion looks exceptionally smooth.',\n", + " 'Low input lag.',\n", + " 'Wide HDR color gamut.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'No VRR support currently.',\n", + " 'May not be bright enough for some.']},\n", + " 'PC Monitor': {'Value': '8.5',\n", + " 'Opinion': \"The Sony A90J is an excellent TV to use as a PC monitor. It has a low input lag and exceptional response time. It can also display proper chroma 4:4:4 at most resolutions, and its wide viewing angles ensure the image stays accurate at the edges when sitting up close. Unfortunately, it doesn't support 1440p @ 120Hz and currently lacks VRR support. There may also be more risk for burn-in with static elements like a desktop user interface.\",\n", + " 'Pros': ['Image stays accurate at most viewing angles.',\n", + " 'Low input lag.',\n", + " 'Displays proper chroma 4:4:4.',\n", + " 'Near-instantaneous response time.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'No VRR support currently.',\n", + " \"Doesn't support 1440p @ 120Hz.\"]}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '3',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '1',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'qn90a-qled',\n", + " 'brand': 'samsung',\n", + " 'url': 'http://rtings.com/tv/reviews/samsung/qn90a-qled',\n", + " 'winner': True,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.6',\n", + " 'Opinion': 'The Samsung QN90A is an excellent TV for any use. Its VA panel provides an excellent native contrast ratio and great local dimming to display deep blacks. It gets bright enough to combat glare and has fantastic reflection handling if you want to use it in a well-lit room. Also, gamers should enjoy its VRR support, low input lag, and quick response time for a responsive gaming experience.',\n", + " 'Pros': ['Excellent native contrast ratio.',\n", + " 'Great Mini LED full-array local dimming feature.',\n", + " 'Fairly wide viewing angles.',\n", + " 'Incredible HDR peak brightness.'],\n", + " 'Cons': ['A bit of blooming noticeable around bright objects.']},\n", + " 'Movies': {'Value': '8.5',\n", + " 'Opinion': 'The Samsung QN90A is excellent for watching movies. It has a VA panel with excellent native contrast and great local dimming to display deep blacks. It also upscales lower-resolution content well, like from Blu-rays, and automatically removes 24p judder from any source.',\n", + " 'Pros': ['Excellent native contrast ratio.',\n", + " 'Great Mini LED full-array local dimming feature.',\n", + " 'Removes 24p judder from any content.'],\n", + " 'Cons': ['A bit of blooming noticeable around bright objects.']},\n", + " 'TV Shows': {'Value': '8.6',\n", + " 'Opinion': \"The Samsung QN90A is excellent for watching TV shows. It easily gets bright enough to combat glare in well-lit rooms and has fantastic reflection handling, so visibility shouldn't be an issue. It has fairly wide viewing angles, so the image remains accurate when viewing from the side. Lastly, it upscales lower-resolution content like cable TV without any issues.\",\n", + " 'Pros': ['Gets bright enough to combat glare.',\n", + " 'Fantastic reflection handling.',\n", + " 'Fairly wide viewing angles.'],\n", + " 'Cons': ['Some dirty screen effect visible in the center.']},\n", + " 'Sports': {'Value': '8.5',\n", + " 'Opinion': \"The Samsung QN90A is excellent for watching sports. Fast-moving content looks smooth thanks to its very quick response time, and it has a Black Frame Insertion feature to help reduce motion blur. It's great for viewing in bright rooms thanks to its fantastic reflection handling and very high peak brightness. It also has fairly wide viewing angles if you want to watch the big game with a few friends.\",\n", + " 'Pros': ['Gets bright enough to combat glare.',\n", + " 'Fairly wide viewing angles.',\n", + " 'Very quick response time results in smooth motion.'],\n", + " 'Cons': ['Some dirty screen effect visible in the center.']},\n", + " 'Video Games': {'Value': '8.8',\n", + " 'Opinion': \"The Samsung QN90A is amazing for gaming. It's packed with gaming features like HDMI 2.1 and VRR support. Its 120Hz panel has a very quick response time, resulting in smooth motion, and input lag is very low. It's great for dark room gaming thanks to its excellent native contrast ratio, even though local dimming is only decent in 'Game Mode'.\",\n", + " 'Pros': ['Excellent native contrast ratio.',\n", + " 'Very quick response time results in smooth motion.',\n", + " 'FreeSync VRR support.',\n", + " 'Very low input lag.'],\n", + " 'Cons': ['A bit of blooming noticeable around bright objects.']},\n", + " 'HDR Movies': {'Value': '8.6',\n", + " 'Opinion': \"The Samsung QN90A is excellent for watching HDR movies. It displays a wide color gamut, and supports HDR10+, but not Dolby Vision. It gets bright enough to make highlights pop, has an excellent native contrast ratio, and its full-array local dimming feature helps it display deep blacks. It also has fantastic black uniformity, but there's still some blooming around bright objects.\",\n", + " 'Pros': ['Excellent native contrast ratio.',\n", + " 'Great Mini LED full-array local dimming feature.',\n", + " 'Incredible HDR peak brightness.',\n", + " 'Displays wide color gamut.'],\n", + " 'Cons': ['A bit of blooming noticeable around bright objects.',\n", + " 'No Dolby Vision support.']},\n", + " 'HDR Gaming': {'Value': '8.8',\n", + " 'Opinion': \"The Samsung QN90A is amazing for HDR gaming. It's excellent for gaming thanks to its very quick response time and low input lag. It has native FreeSync support and G-SYNC compatibility. In terms of HDR, it displays a wide color gamut, and has incredible HDR brightness in 'Game Mode'. It also has an excellent native contrast ratio to provide a great dark room gaming experience, but its local dimming isn't as good in 'Game Mode'.\",\n", + " 'Pros': ['Very quick response time results in smooth motion.',\n", + " 'FreeSync VRR support.',\n", + " 'Incredible HDR peak brightness.',\n", + " 'Displays wide color gamut.'],\n", + " 'Cons': ['A bit of blooming noticeable around bright objects.']},\n", + " 'PC Monitor': {'Value': '8.8',\n", + " 'Opinion': \"The Samsung QN90A is an excellent choice to use as a PC monitor. It has a very low input lag and quick response time to provide a responsive gaming experience. Thanks to its wide viewing angles, the image should remain mostly accurate at the edges if you sit too close. You also shouldn't have any issues in a well-lit room as it gets bright enough to combat glare and has fantastic reflection handling.\",\n", + " 'Pros': ['Gets bright enough to combat glare.',\n", + " 'Fairly wide viewing angles.',\n", + " 'Very quick response time results in smooth motion.',\n", + " 'Very low input lag.'],\n", + " 'Cons': ['Some dirty screen effect visible in the center.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '0',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'u8g',\n", + " 'brand': 'hisense',\n", + " 'url': 'http://rtings.com/tv/reviews/hisense/u8g',\n", + " 'winner': True,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.4',\n", + " 'Opinion': \"Overall, the Hisense U8G is an impressive TV. Thanks to its excellent contrast ratio, high peak brightness, and great local dimming feature, it's a great choice for watching SDR or HDR movies. Performance-wise, it has outstanding low input lag, excellent response time, and great gaming features like variable refresh rate (VRR), making it an excellent choice for gaming or use as a PC monitor. There are a few technical issues that might bother some people, but overall, it's a well-rounded TV that should please most people.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'High peak brightness.',\n", + " 'Excellent reflection handling.',\n", + " 'Excellent response time.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.']},\n", + " 'Movies': {'Value': '8.6',\n", + " 'Opinion': \"The Hisense U8G is an excellent choice for watching movies in a dark room; the impressive contrast ratio, great local dimming, and excellent black uniformity deliver an impressive viewing experience in a dark room. Blu-ray and UHD Blu-ray content displays without any noticeable issues, and even older DVD or cable content looks great. Due to the fast response time, you might notice some stutter when watching movies, especially in slow panning shots. There's a motion interpolation feature that can help reduce the amount of stutter, but this introduces the soap opera effect, so it's not a perfect solution.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Excellent black uniformity.',\n", + " 'Low-resolution content is upscaled without any issues.'],\n", + " 'Cons': ['Noticeable stutter in low frame rate content.']},\n", + " 'TV Shows': {'Value': '8.2',\n", + " 'Opinion': \"The Hisense U8G is a great TV for watching TV shows during the day. It has great reflection handling and high peak brightness, so glare shouldn't be an issue for most people. Older, lower resolutions shows are upscaled well. The built-in Google Play Store has a huge selection of apps, so you're sure to find your favorite streaming service without having to resort to an external streaming box. It's not perfect though, as the image degrades when viewed at an angle, which might be an issue if you like to move around with the TV on.\",\n", + " 'Pros': ['High peak brightness.',\n", + " 'Excellent reflection handling.',\n", + " 'Low-resolution content is upscaled without any issues.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.']},\n", + " 'Sports': {'Value': '8.0',\n", + " 'Opinion': \"The Hisense U8G is a great TV for watching sports, with some notable exceptions. It has excellent reflection handling and great peak brightness, so glare shouldn't be an issue for most people. It has a fast response time in brighter scenes, so the players look like players and not just a blurry shape on the screen. Lower resolution content, like cable sports, is upscaled well and looks almost as good as native 4k content. On the other hand, the image degrades when viewed at an angle, so if you like to watch the big game with a large group of friends, only those seated directly in front of the TV will enjoy it to the fullest.\",\n", + " 'Pros': ['High peak brightness.',\n", + " 'Excellent reflection handling.',\n", + " 'Excellent response time.',\n", + " 'Low-resolution content is upscaled without any issues.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.',\n", + " 'Some noticeable dirty screen effect.']},\n", + " 'Video Games': {'Value': '8.8',\n", + " 'Opinion': \"The Hisense U8G is an amazing TV for playing video games, with a few exceptions. It has outstanding low input lag, a great response time, and full VRR support from any source. Games look great thanks to the excellent contrast ratio, and local dimming performs just as well in Game mode as it does in other picture modes. It's also extremely bright, and it has great reflection handling, so glare shouldn't be an issue. On the other hand, there are a few technical issues with this TV when gaming. Local dimming isn't available with VRR in some cases from an Xbox without making some sacrifices to picture settings, and VRR can cause ghosting issues with some games.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'High peak brightness.',\n", + " 'Outstanding low input lag.',\n", + " 'Excellent response time.'],\n", + " 'Cons': ['Some technical issues in Game Mode.']},\n", + " 'HDR Movies': {'Value': '8.5',\n", + " 'Opinion': \"The Hisense U8G delivers an excellent HDR movie experience. It has an excellent contrast ratio, delivering deep blacks, and the local dimming feature is great. It can get extremely bright when displaying HDR content, and small specular highlights stand out. It also has an impressive color gamut, so you can fully enjoy the latest UHD movies. Unfortunately, with some HDR content, it doesn't follow the director's intent, causing most scenes to be displayed brighter than they should be.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'High peak brightness.',\n", + " 'Excellent black uniformity.'],\n", + " 'Cons': ['Most scenes are brighter than they should be.',\n", + " 'Noticeable stutter in low frame rate content.']},\n", + " 'HDR Gaming': {'Value': '8.7',\n", + " 'Opinion': \"The Hisense U8G is an excellent TV for HDR gaming. It has impressive low input lag, a fast response time, and great gaming features, including Auto Low Latency Mode and support for a variable refresh rate. Image quality isn't hindered in Game mode, with the same great local dimming performance and high peak brightness as outside of Game mode. On the other hand, there are a few technical issues with this TV when gaming. Local dimming isn't available with VRR in some cases from an Xbox without making some sacrifices to picture settings, and VRR can cause ghosting issues with some games.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'High peak brightness.',\n", + " 'Outstanding low input lag.',\n", + " 'Excellent response time.'],\n", + " 'Cons': ['Some technical issues in Game Mode.']},\n", + " 'PC Monitor': {'Value': '8.3',\n", + " 'Opinion': \"For the most part, the Hisense U8G is a great choice for a PC monitor. It has extremely low input lag, ensuring smooth mouse movements and a responsive experience in general, and it has a great response time. It also has great reflection handling, so glare shouldn't be an issue. Unfortunately, the image degrades when viewed at an angle, so you'll need to sit a comfortable distance from the screen; otherwise, the sides of the screen won't look the same. Also, like most TVs, it uses a BGR subpixel layout, which can be an issue for some programs.\",\n", + " 'Pros': ['Outstanding low input lag.', 'Excellent response time.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.',\n", + " 'BGR subpixel layout can cause text clarity issues in some cases.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (incl. adapter)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'u6g',\n", + " 'brand': 'hisense',\n", + " 'url': 'http://rtings.com/tv/reviews/hisense/u6g',\n", + " 'winner': True,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.1',\n", + " 'Opinion': \"The Hisense U6G is a great TV for most uses. It's a great TV for watching sports or TV shows in a bright room unless you have a wide seating arrangement or watch with a large group of people. It's also a great choice for watching movies in SDR or HDR in a dark room, but it can't get very bright in HDR. It's also an impressive gaming TV, with low input lag and a great response time, but it doesn't support any advanced gaming features, like HDMI 2.1 or variable refresh rate technology (VRR), which may disappoint those looking to game on the latest consoles.\",\n", + " 'Pros': ['Excellent contrast.',\n", + " 'Outstanding black uniformity.',\n", + " 'Excellent reflection handling.',\n", + " 'Huge selection of streaming apps.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.',\n", + " 'Ads throughout the smart interface.']},\n", + " 'Movies': {'Value': '8.3',\n", + " 'Opinion': \"The Hisense U6G is a great TV for watching movies in a dark room. It has excellent contrast and outstanding black uniformity, two of the most important factors in good picture quality in a dark room. It also has a decent local dimming feature to further improve contrast. It upscales lower resolution content well, which is great if you still have a large collection of DVDs. Unfortunately, it can't remove judder from some sources, which may be distracting to some users.\",\n", + " 'Pros': ['Excellent contrast.',\n", + " 'Outstanding black uniformity.',\n", + " 'Lower resolution content is upscaled well.'],\n", + " 'Cons': [\"Can't remove judder from 60p/60i sources.\"]},\n", + " 'TV Shows': {'Value': '8.0',\n", + " 'Opinion': \"The Hisense U6G is great for watching TV shows in a bright living room. It has excellent reflection handling and great peak brightness, so glare shouldn't be an issue. Older cable television shows are upscaled well, and the unit we bought has good gray uniformity. The built-in Google Play Store has a huge selection of streaming apps, so you're sure to find your favorite streaming service without needing an external player. Unfortunately, the image degrades when viewed at an angle, so it's not the best choice for a wide seating arrangement or if you like to walk around with the TV on.\",\n", + " 'Pros': ['Excellent reflection handling.',\n", + " 'Huge selection of streaming apps.',\n", + " 'Lower resolution content is upscaled well.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.']},\n", + " 'Sports': {'Value': '8.0',\n", + " 'Opinion': \"The Hisense U6G is a very good TV for watching sports in a bright room. It has excellent reflection handling and great peak brightness, so glare shouldn't be an issue in most rooms. It also has a fast response time, which is especially important in fast-moving games, as it results in clear motion with little blur. On the other hand, the image degrades when viewed at an angle, so it's not the best choice for a wide seating arrangement or for watching the big game with a group of friends.\",\n", + " 'Pros': ['Excellent reflection handling.',\n", + " 'Great response time.',\n", + " 'Lower resolution content is upscaled well.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.']},\n", + " 'Video Games': {'Value': '8.3',\n", + " 'Opinion': \"The Hisense U6G is an impressive gaming TV. It has outstanding low input lag and a great response time, but dark scenes in some games are sometimes a bit blurry. It looks great in any setting, with excellent contrast for gaming in a dark room and excellent reflection handling for a brighter environment. Unfortunately, it doesn't support any advanced gaming features, like HDMI 2.1 or variable refresh rate technology (VRR), so it's not the best choice for next-generation console gamers.\",\n", + " 'Pros': ['Excellent contrast.',\n", + " 'Outstanding black uniformity.',\n", + " 'Great response time.',\n", + " 'Outstanding low input lag.'],\n", + " 'Cons': ['No advanced gaming features, like variable refresh rate support (VRR).',\n", + " 'No HDMI 2.1.']},\n", + " 'HDR Movies': {'Value': '8.1',\n", + " 'Opinion': \"The Hisense U6G is a great TV for watching movies in HDR. It has excellent contrast and outstanding black uniformity, which are two of the most important factors in a good HDR experience, and it has a decent local dimming feature. It can display a wide color gamut, so you can fully enjoy the latest HDR content. Unfortunately, it can't get very bright, so small highlights in some scenes don't stand out much. It also can't remove judder from some sources, which may be distracting for some users.\",\n", + " 'Pros': ['Excellent contrast.',\n", + " 'Outstanding black uniformity.',\n", + " 'Wide color gamut.'],\n", + " 'Cons': ['Just okay peak brightness in HDR.',\n", + " 'Some scenes are brighter than they should be.',\n", + " \"Can't remove judder from 60p/60i sources.\"]},\n", + " 'HDR Gaming': {'Value': '8.2',\n", + " 'Opinion': \"The Hisense U6G is a great TV for HDR gaming. It delivers a responsive gaming experience, thanks to the low input lag and fast response time. HDR content looks great for the most part, with excellent contrast, outstanding black uniformity, and a wide color gamut. It can't get very bright in HDR, though, so small highlights like particle effects in some games don't stand out as well as they should. Unfortunately, it's not the best choice for next-gen console gamers, as it doesn't have any HDMI 2.1 ports and doesn't support any advanced gaming features, like variable refresh rate technology (VRR).\",\n", + " 'Pros': ['Excellent contrast.',\n", + " 'Outstanding black uniformity.',\n", + " 'Great response time.',\n", + " 'Outstanding low input lag.',\n", + " 'Wide color gamut.'],\n", + " 'Cons': ['No advanced gaming features, like variable refresh rate support (VRR).',\n", + " 'No HDMI 2.1.',\n", + " 'Just okay peak brightness in HDR.']},\n", + " 'PC Monitor': {'Value': '8.0',\n", + " 'Opinion': \"The Hisense U6G is a great TV for use as a PC monitor, with some limitations. It has a great response time and outstanding low input lag, both of which are important for a responsive experience. It has excellent reflection handling and high peak brightness, and there's no risk of permanent burn-in with static images. Unfortunately, the BGR pixel structure isn't ideal for text clarity in some cases, as some Windows programs can't correct this. It also has narrow viewing angles, so the sides of the screen can appear non-uniform if you're sitting too close.\",\n", + " 'Pros': ['Excellent reflection handling.',\n", + " 'Great response time.',\n", + " 'Outstanding low input lag.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.',\n", + " 'No HDMI 2.1.',\n", + " 'BGR subpixel layout can cause some issues with text.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'a80j-oled',\n", + " 'brand': 'sony',\n", + " 'url': 'http://rtings.com/tv/reviews/sony/a80j-oled',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.8',\n", + " 'Opinion': \"The Sony A80J is excellent overall. It's fantastic for watching movies in dark rooms because it has a near-infinite contrast ratio that produces deep blacks, and there's no blooming around bright objects. HDR content looks amazing because of its deep blacks, and it displays a wide color gamut, but its HDR brightness is just okay. It's also excellent for watching sports due to its near-instantaneous response time, and it's fantastic for gaming as it has HDMI 2.1 inputs, but it lacks any VRR support. It's impressive to use as a PC monitor, but you risk damaging the screen with burn-in after exposure to static elements.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Image stays accurate at wide viewing angles.',\n", + " 'Near-instantaneous response time for smooth motion.'],\n", + " 'Cons': ['OLEDs are prone to permanent burn-in.',\n", + " \"Doesn't get bright enough to fight intense glare.\"]},\n", + " 'Movies': {'Value': '9.4',\n", + " 'Opinion': 'The Sony A80J is a fantastic TV for watching movies in a dark room. It can display perfect blacks with no blooming thanks to its near-infinite contrast ratio, ideal for watching movies in a dark room. It also has no problems upscaling lower resolution content, and it removes 24p judder from any source. Due to its fast response time, however, low frame rate content appears to stutter.',\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Removes 24p judder from any source.',\n", + " 'No issues upscaling lower resolution content.'],\n", + " 'Cons': ['Low frame rate content appears to stutter.']},\n", + " 'TV Shows': {'Value': '8.1',\n", + " 'Opinion': \"The Sony A80J is great for watching TV shows in a bright room. It upscales lower resolution content well, and it has wide viewing angles, so the image stays accurate from the sides. It also has a semi-gloss finish with incredible reflection handling, meaning glare won't be an issue in a room with a few lights around, but it's not bright enough to fight intense glare, like if you place the TV opposite a window with direct sunlight.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Image stays accurate at wide viewing angles.',\n", + " 'Incredible reflection handling.',\n", + " 'No issues upscaling lower resolution content.'],\n", + " 'Cons': ['OLEDs are prone to permanent burn-in.',\n", + " \"Doesn't get bright enough to fight intense glare.\"]},\n", + " 'Sports': {'Value': '8.5',\n", + " 'Opinion': \"The Sony A80J is excellent for watching sports. It has a near-instantaneous response time, so fast-moving sports look exceptionally clear. It also has wide viewing angles, which is great for watching with a group, and there's almost no dirty screen effect in the center. Unfortunately, its brightness is just okay, so it struggles with very intense light sources, but it still has fantastic reflection handling if you have some lights in the room.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Image stays accurate at wide viewing angles.',\n", + " 'Near-instantaneous response time for smooth motion.',\n", + " 'Incredible reflection handling.'],\n", + " 'Cons': ['OLEDs are prone to permanent burn-in.',\n", + " \"Doesn't get bright enough to fight intense glare.\"]},\n", + " 'Video Games': {'Value': '9.1',\n", + " 'Opinion': \"The Sony A80J is fantastic for playing video games. It has a near-instantaneous response time for smooth motion, and its input lag is objectively low, but not as low as some other TVs. Unfortunately, its advertised VRR support hasn't been implemented yet, but it has two HDMI 2.1 ports for 4k @ 120Hz gaming. On the plus side, its near-infinite contrast ratio can produce deep inky blacks, which is great for dark room gaming. \",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Near-instantaneous response time for smooth motion.',\n", + " 'Low input lag.',\n", + " 'Two HDMI 2.1 ports.'],\n", + " 'Cons': ['OLEDs are prone to permanent burn-in.',\n", + " \"VRR isn't functional yet.\"]},\n", + " 'HDR Movies': {'Value': '8.8',\n", + " 'Opinion': \"The Sony A80J is excellent for watching movies in HDR. While its HDR brightness is only okay, it still delivers an impressive HDR experience thanks to its near-infinite contrast ratio and wide color gamut. It can produce perfect blacks with no visible blooming, and it has no issues upscaling lower resolution content. Unfortunately, low frame rate content appears to stutter due to the TV's fast response time.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Wide color gamut.',\n", + " 'No issues upscaling lower resolution content.'],\n", + " 'Cons': ['Low frame rate content appears to stutter.',\n", + " \"Can't hit the brightest highlights in HDR.\"]},\n", + " 'HDR Gaming': {'Value': '8.9',\n", + " 'Opinion': 'The Sony A80J is amazing for HDR gaming. It delivers a smooth and responsive gaming experience thanks to its near-instantaneous response time and relatively low input lag. It also has a near-infinite contrast ratio for deep, uniform blacks. Although it only has okay HDR brightness, HDR content still looks amazing due to its near-infinite contrast and wide color gamut.',\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Near-instantaneous response time for smooth motion.',\n", + " 'Wide color gamut.',\n", + " 'Low input lag.',\n", + " 'Two HDMI 2.1 ports.'],\n", + " 'Cons': ['OLEDs are prone to permanent burn-in.',\n", + " \"VRR isn't functional yet.\",\n", + " \"Can't hit the brightest highlights in HDR.\"]},\n", + " 'PC Monitor': {'Value': '8.4',\n", + " 'Opinion': \"The Sony A80J is a great TV to use as a PC monitor. It can display proper chroma 4:4:4, which is important for text clarity. Unfortunately, we had some issues displaying 1440p signals. Also, it's susceptible to permanent burn-in with static elements like a desktop interface, but we don't expect it to be an issue for those who watch varied content. It has wide viewing angles, meaning the image remains accurate no matter where you sit.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Near-instantaneous response time for smooth motion.',\n", + " 'Low input lag.',\n", + " 'Displays proper chroma 4:4:4.'],\n", + " 'Cons': ['OLEDs are prone to permanent burn-in.',\n", + " \"VRR isn't functional yet.\",\n", + " 'Issues displaying a 1440p resolution.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '3',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '1',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': '6-series-r646-2021-qled',\n", + " 'brand': 'tcl',\n", + " 'url': 'http://rtings.com/tv/reviews/tcl/6-series-r646-2021-qled',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.3',\n", + " 'Opinion': \"The TCL R646 is great for most uses. It's impressive for watching movies because it displays deep blacks, and it has a decent Mini LED local dimming feature, but it doesn't improve the picture quality that much. It's great for watching TV shows or sports because it has fantastic peak brightness and excellent reflection handling, but it has narrow viewing angles. Gamers should appreciate the VRR support, HDMI 2.1 inputs, and low input lag. Lastly, it's impressive for watching HDR content because it displays a wide color gamut and gets bright enough to make highlights pop.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Excellent reflection handling.',\n", + " 'Two HDMI 2.1 inputs.'],\n", + " 'Cons': ['Mini LED local dimming feature is decent, but not as good as other TVs.',\n", + " 'Some black smearing with fast-moving content.']},\n", + " 'Movies': {'Value': '8.4',\n", + " 'Opinion': \"The TCL R646 is impressive for watching movies in dark rooms. It has an outstanding contrast ratio to display deep blacks, and the Mini LED local dimming feature is decent, but it doesn't improve the picture quality that much. It removes 24p judder from any source, and it displays 1080p and 4k content well, so it's great for watching Blu-rays and Ultra HD Blu-rays. However, it can't properly display 480p content, so it's not a good choice for watching DVDs.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Good black uniformity with minimal blooming.',\n", + " 'Automatically removes 24p judder from any source.',\n", + " 'No problem displaying 720p, 1080, or 4k content.'],\n", + " 'Cons': ['Mini LED local dimming feature is decent, but not as good as other TVs.',\n", + " \"Can't display 480p content properly.\"]},\n", + " 'TV Shows': {'Value': '8.2',\n", + " 'Opinion': \"The TCL R646 is great for watching TV shows in bright rooms. It gets bright enough to fight glare and has excellent reflection handling, so visibility shouldn't be an issue. The Google TV is great to use and has a ton of apps available to download, and it doesn't have issues upscaling 720p content. Sadly, it has narrow viewing angles, so the image looks washed out from the sides.\",\n", + " 'Pros': ['No problem displaying 720p, 1080, or 4k content.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Excellent reflection handling.'],\n", + " 'Cons': [\"Can't display 480p content properly.\",\n", + " 'Narrow viewing angles.']},\n", + " 'Sports': {'Value': '8.0',\n", + " 'Opinion': \"The TCL R646 is great for watching sports in a well-lit environment. Thanks to its excellent reflection handling and fantastic peak brightness, visibility shouldn't be a problem even in the brightest of rooms. It has a great response time, but some motion may still look blurry. Unfortunately, it's not a good choice for watching sports with a large group of friends because it has narrow viewing angles.\",\n", + " 'Pros': ['No problem displaying 720p, 1080, or 4k content.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Excellent reflection handling.'],\n", + " 'Cons': ['Narrow viewing angles.',\n", + " 'Some black smearing with fast-moving content.']},\n", + " 'Video Games': {'Value': '8.7',\n", + " 'Opinion': \"The TCL R646 is excellent for gaming. It has a 120Hz panel with HDMI 2.1 inputs, meaning you can take full advantage of the PS5 and Xbox Series X's capabilities. It has VRR support to reduce screen tearing, and the input lag is low. It has a quick overall response time, but there's black smearing with fast-moving objects in dark scenes. It's excellent for dark room gaming because it has high native contrast and decent local dimming.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Two HDMI 2.1 inputs.',\n", + " 'Low input lag for responsive gaming.',\n", + " 'Variable refresh rate support.'],\n", + " 'Cons': ['Mini LED local dimming feature is decent, but not as good as other TVs.',\n", + " 'Some black smearing with fast-moving content.']},\n", + " 'HDR Movies': {'Value': '8.4',\n", + " 'Opinion': \"The TCL R646 is impressive for watching HDR movies. It has a VA panel with a high native contrast ratio, and even though it has a decent Mini LED local dimming, it doesn't improve the picture quality in dark scenes that much. It displays a wide color gamut, and it gets bright enough to make highlights pop. It supports Dolby Vision and HDR10+, so you won't have to worry about which format the HDR content is in before watching.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Displays wide color gamut.'],\n", + " 'Cons': ['Mini LED local dimming feature is decent, but not as good as other TVs.']},\n", + " 'HDR Gaming': {'Value': '8.6',\n", + " 'Opinion': \"The TCL R646 is excellent for HDR gaming. It has a bunch of gaming features like HDMI 2.1 inputs and VRR support to reduce screen tearing. It has low input lag and a quick response time, but you may notice some black smearing. HDR content looks great because it gets bright enough to make highlights pop, displays a wide color gamut, and has high contrast. It has a decent full-array local dimming feature, but it doesn't seem to improve the picture quality all that much in dark scenes.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Two HDMI 2.1 inputs.',\n", + " 'Variable refresh rate support.'],\n", + " 'Cons': ['Mini LED local dimming feature is decent, but not as good as other TVs.',\n", + " 'Some black smearing with fast-moving content.']},\n", + " 'PC Monitor': {'Value': '8.2',\n", + " 'Opinion': \"The TCL R646 is great to use as a PC monitor. It has a low input lag for a responsive desktop experience, and it has a quick response time, but you may notice some motion blur. Glare shouldn't be an issue in well-lit rooms because it gets bright enough to combat glare and has excellent reflection handling. It displays proper chroma 4:4:4 with 1080p and 4k signals at 60Hz, but not any other signal. It also has narrow viewing angles, so the image looks inaccurate from the side.\",\n", + " 'Pros': ['No problem displaying 720p, 1080, or 4k content.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Excellent reflection handling.',\n", + " 'Two HDMI 2.1 inputs.'],\n", + " 'Cons': ['Narrow viewing angles.',\n", + " 'Some black smearing with fast-moving content.',\n", + " 'Proper chroma 4:4:4 limited to certain signals.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'p-series-quantum-x-2020',\n", + " 'brand': 'vizio',\n", + " 'url': 'http://rtings.com/tv/reviews/vizio/p-series-quantum-x-2020',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.3',\n", + " 'Opinion': \"The Vizio P Series Quantum X 2020 is great for most uses. It gets very bright and handles reflections well, making it a good choice for watching TV shows or sports during the day. It performs incredibly well in dark rooms, as it can produce deep and inky blacks for watching movies or playing video games. It has low input lag, a fast response time, and a high refresh rate to deliver an extremely responsive gaming and desktop experience. Unfortunately, its VA panel has narrow viewing angles, so it isn't the best option for wide seating areas.\",\n", + " 'Pros': ['High contrast ratio.',\n", + " 'Can get very bright in SDR and HDR.',\n", + " 'Excellent reflection handling.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'Movies': {'Value': '8.5',\n", + " 'Opinion': \"The Vizio P Series Quantum X 2020 is excellent for watching movies. It has an outstanding contrast ratio that's further enhanced by its full-array local dimming, producing inky blacks for a fantastic dark room viewing experience. It upscales 1080p content well and can remove judder from 24p sources and native apps. Unfortunately, there's visible blooming around bright objects, which can be distracting in dark scenes.\",\n", + " 'Pros': ['High contrast ratio.',\n", + " 'Great local dimming feature.',\n", + " 'Exceptional black uniformity.',\n", + " 'Upscales 1080p content well.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'TV Shows': {'Value': '8.0',\n", + " 'Opinion': \"The Vizio P Series Quantum X is great for watching TV shows. It gets incredibly bright and has excellent reflection handling, providing great visibility in well-lit rooms. Sadly, its narrow viewing angles make images look washed out from the sides, which isn't ideal if you like walking around while watching. On the upside, its VA panel is immune to permanent burn-in, so you don't have to worry about leaving it on the same news channel all day.\",\n", + " 'Pros': ['Can get very bright in SDR and HDR.',\n", + " 'Excellent reflection handling.',\n", + " 'Upscales 1080p content well.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'Sports': {'Value': '7.9',\n", + " 'Opinion': \"The Vizio P Series Quantum X is good for watching sports. It has excellent reflection handling and gets very bright, providing great visibility even in the brightest lighting conditions. Fast-moving scenes look clear thanks to its quick response time and Black Frame Insertion feature. It isn't the best option for watching with a large group of people, though, as its VA panel's poor viewing angles make images look washed out from the sides.\",\n", + " 'Pros': ['Can get very bright in SDR and HDR.',\n", + " 'Fast response time.',\n", + " 'Excellent reflection handling.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'Video Games': {'Value': '8.8',\n", + " 'Opinion': 'The Vizio P Series Quantum X 2020 is excellent for gaming. It provides an incredibly smooth and responsive experience thanks to its low input lag and high refresh rate. It has a quick response time to deliver fast-moving scenes with minimal motion blur and a Black Frame Insertion feature to further improve clarity. Additionally, it supports variable refresh rate to reduce screen tearing. It has an outstanding contrast ratio and exceptional black uniformity, making it a fantastic choice for gaming in the dark.',\n", + " 'Pros': ['High contrast ratio.', 'Fast response time.', 'Low input lag.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'HDR Movies': {'Value': '8.6',\n", + " 'Opinion': 'The Vizio P Series Quantum X 2020 is excellent for watching movies in HDR. It has a high contrast ratio to produce deep blacks, an excellent HDR color gamut, and it gets more than bright enough to make highlights pop. It has a great local dimming feature, but the blooming can be a bit distracting, especially if you tend to watch with subtitles.',\n", + " 'Pros': ['High contrast ratio.',\n", + " 'Can get very bright in SDR and HDR.',\n", + " 'Great local dimming feature.',\n", + " 'Exceptional black uniformity.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'HDR Gaming': {'Value': '8.7',\n", + " 'Opinion': \"The Vizio P Series Quantum X 2020 is excellent for gaming in HDR. Gaming feels smooth and responsive, and there's support for variable refresh rate technology to help minimize screen tearing. HDR content looks amazing, as it has an excellent color gamut and high peak brightness, allowing it to produce rich colors and bright highlights. Its high contrast ratio, full-array local dimming, and exceptional black uniformity make it a fantastic option for dark room gaming.\",\n", + " 'Pros': ['High contrast ratio.',\n", + " 'Can get very bright in SDR and HDR.',\n", + " 'Fast response time.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Poor viewing angles.']},\n", + " 'PC Monitor': {'Value': '8.0',\n", + " 'Opinion': 'The Vizio P Series Quantum X is a good TV for use as a PC monitor. It has low input lag, fast response time, and can display proper chroma 4:4:4. It gets very bright and handles reflections well. Unfortunately, its VA panel has poor viewing angles, so the edges of the screen may look washed out if you sit too close.',\n", + " 'Pros': ['Can get very bright in SDR and HDR.',\n", + " 'Fast response time.',\n", + " 'Low input lag.',\n", + " 'Excellent reflection handling.'],\n", + " 'Cons': ['Poor viewing angles.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '1',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '0',\n", + " 'Analog Audio Out RCA': '1',\n", + " 'Component In': '0',\n", + " 'Composite In': '1',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'qn85a-qled',\n", + " 'brand': 'samsung',\n", + " 'url': 'http://rtings.com/tv/reviews/samsung/qn85a-qled',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.2',\n", + " 'Opinion': \"The Samsung QN85A is great for mixed usage. It performs very well in bright settings thanks to its high brightness and exceptional reflection handling. It's less suited to dark room viewing or gaming, because its ADS panel has a low native contrast ratio, although it's improved by local dimming. The fast response time results in clear motion in sports or video games, and the low input lag makes the TV feel responsive. HDR content looks great as well due to its wide color gamut and high HDR brightness that makes highlights pop.\",\n", + " 'Pros': ['Wide viewing angles.', 'Bright enough to overcome glare.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.']},\n", + " 'Movies': {'Value': '7.6',\n", + " 'Opinion': \"The Samsung QN85A is good for watching movies. While its native contrast ratio is only okay, it looks better with actual content thanks to the local dimming. That said, there's still noticeable blooming, especially when viewed at an angle. On the upside, it has no issues upscaling lower resolution content, and it's judder-free with 24p movies.\",\n", + " 'Pros': ['Completely judder-free.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.']},\n", + " 'TV Shows': {'Value': '8.7',\n", + " 'Opinion': 'The Samsung QN85A is amazing for watching TV shows. It performs exceptionally well in bright environments thanks to its high brightness and outstanding reflection handling. It also has wide viewing angles, which ensures that the image stays accurate when viewed from the side. Lower resolution content, like cable TV, is upscaled well without artifacts.',\n", + " 'Pros': ['Wide viewing angles.',\n", + " 'Bright enough to overcome glare.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.']},\n", + " 'Sports': {'Value': '8.5',\n", + " 'Opinion': \"The Samsung QN85A is an excellent TV for watching sports. It has a fast response time that makes motion look clear, and it includes a motion interpolation feature to further improve motion clarity. It also gets very bright, with exceptional reflection handling, so glare shouldn't be an issue. Its wide viewing angles are also great for watching the game with a group. Unfortunately, there may be a bit of dirty screen effect, which can be distracting.\",\n", + " 'Pros': ['Wide viewing angles.',\n", + " 'Bright enough to overcome glare.',\n", + " 'Great response time that results in clear motion.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.']},\n", + " 'Video Games': {'Value': '8.4',\n", + " 'Opinion': \"The Samsung QN85A is an impressive TV for gaming. It has a fast response time for smooth motion, and its input lag is low, making gaming feel responsive. It supports FreeSync VRR, but unfortunately, G-SYNC doesn't work. It also has an HDMI 2.1 port for advanced consoles. While the native contrast ratio is just okay, it's improved when the TV is in Game Mode, but since it's an ADS TV, you may still experience panel glow or blooming.\",\n", + " 'Pros': ['Low input lag.',\n", + " 'Great response time that results in clear motion.',\n", + " 'Supports FreeSync VRR.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.']},\n", + " 'HDR Movies': {'Value': '7.7',\n", + " 'Opinion': \"The Samsung QN85A is good for watching movies in HDR. It gets exceptionally bright in HDR, so highlights pop as they should, and the overall brightness of scenes is spot-on. Unfortunately, it has a low native contrast ratio, but the local dimming does a good job of making blacks look deeper. Thankfully, it has a wide color gamut for HDR, and it supports HDR10 and HDR10+, but like all Samsung TVs, it doesn't support Dolby Vision.\",\n", + " 'Pros': ['Bright enough to bring out highlights in HDR.',\n", + " 'Completely judder-free.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.',\n", + " \"Doesn't support Dolby Vision.\"]},\n", + " 'HDR Gaming': {'Value': '8.3',\n", + " 'Opinion': \"The Samsung QN85A is great for HDR gaming. It delivers on the gaming front thanks to its quick response time, low input lag, and FreeSync VRR support. It also gets bright enough to make highlights in HDR content truly pop, despite having a low native contrast ratio, which is significantly better with local dimming and in Game Mode. If you're gaming in a bright environment, glare shouldn't be an issue either, since it has exceptional reflection handling.\",\n", + " 'Pros': ['Bright enough to bring out highlights in HDR.',\n", + " 'Low input lag.',\n", + " 'Great response time that results in clear motion.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.']},\n", + " 'PC Monitor': {'Value': '8.9',\n", + " 'Opinion': \"The Samsung QN85A is an amazing TV to use as a PC monitor. Its wide viewing angles ensure that content doesn't look too washed out at the edges, even when sitting up close or at an angle. It also displays proper chroma 4:4:4, which is important for text clarity, and it has an incredibly low input lag, making for a responsive desktop experience. Unfortunately, the backlight isn't flicker-free, which some people may be sensitive to, especially with long periods of use.\",\n", + " 'Pros': ['Wide viewing angles.',\n", + " 'Displays proper chroma 4:4:4.',\n", + " 'Low input lag.',\n", + " 'Great response time that results in clear motion.'],\n", + " 'Cons': ['Low native contrast that can result in noticeable blooming.',\n", + " \"Backlight isn't flicker-free.\"]}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '0',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'x85j',\n", + " 'brand': 'sony',\n", + " 'url': 'http://rtings.com/tv/reviews/sony/x85j',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '7.5',\n", + " 'Opinion': \"The Sony X85J is a good TV for most uses. The excellent contrast and outstanding black uniformity are great for watching movies in the dark, but it lacks a local dimming feature, which is a bit disappointing. It's a good TV for watching sports or TV shows during the day, and its low input lag and fast response time make it a good choice for playing games.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Great response time.',\n", + " 'Huge selection of smart apps.',\n", + " 'Upscales low resolution content well.'],\n", + " 'Cons': ['Image degrades at an angle.',\n", + " 'Direct reflections can be distracting.']},\n", + " 'Movies': {'Value': '7.2',\n", + " 'Opinion': \"The Sony X85J is a decent TV for watching movies. It has outstanding contrast and excellent black uniformity, so dark scenes look great in a dark room, but, unfortunately, there's no local dimming feature. Older, low-resolution movies upscale well, and this TV can remove judder from any source. Unfortunately, there is some stutter when watching movies, especially in slow, panning shots.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Can remove 24p judder from any source.',\n", + " 'Upscales low resolution content well.',\n", + " 'Excellent black uniformity.'],\n", + " 'Cons': ['Stutters in panning shots.', 'No local dimming.']},\n", + " 'TV Shows': {'Value': '7.8',\n", + " 'Opinion': \"The Sony X85J is a very good TV for watching TV shows. There's a large selection of apps, so you don't have to worry about an external box for your streaming service of choice, and it upscales older content well, with no noticeable issues. It has great peak brightness, but direct reflections can still be distracting in a bright room. Unfortunately, the image degrades when viewed at an angle, so it's not a great choice if you like to move around.\",\n", + " 'Pros': ['Huge selection of smart apps.',\n", + " 'Upscales low resolution content well.',\n", + " 'Great SDR peak brightness.'],\n", + " 'Cons': ['Image degrades at an angle.',\n", + " 'Direct reflections can be distracting.']},\n", + " 'Sports': {'Value': '7.6',\n", + " 'Opinion': \"The Sony X85J is a good TV for watching sports. It has a great response time, resulting in little blur behind fast-moving objects (like the players). It also has a large selection of apps, so you should be able to find your favorite sports streaming app, and if you're watching on cable, it upscales lower resolution content well. This TV has great peak brightness, but direct reflections can still be distracting. Unfortunately, the image degrades when viewed at an angle, which isn't ideal for watching the big game with lots of friends.\",\n", + " 'Pros': ['Great response time.',\n", + " 'Huge selection of smart apps.',\n", + " 'Upscales low resolution content well.',\n", + " 'Great SDR peak brightness.'],\n", + " 'Cons': ['Image degrades at an angle.',\n", + " 'Direct reflections can be distracting.']},\n", + " 'Video Games': {'Value': '7.7',\n", + " 'Opinion': \"The Sony X85J is a good TV for playing video games, and it's expected to get even better with a future update. It has low input lag, a great response time, and great peak brightness in SDR, and it's future-proof, with two HDMI 2.1 ports. Unfortunately, most of the advanced gaming features advertised by Sony for this TV aren't available yet, including support for variable refresh rate technology (VRR), but they've been promised in a future firmware update.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Low input lag.',\n", + " 'Great response time.',\n", + " 'Great SDR peak brightness.'],\n", + " 'Cons': ['No local dimming.',\n", + " 'Gaming features not yet available.',\n", + " 'Direct reflections can be distracting.']},\n", + " 'HDR Movies': {'Value': '7.2',\n", + " 'Opinion': \"The Sony X85j is a decent TV for watching the latest movies in HDR. It has outstanding contrast and excellent black uniformity, but it lacks a local dimming feature. It has decent peak brightness in HDR, but some small highlights aren't as bright as they should be. Unfortunately, there is some stutter when watching movies, especially in slow, panning shots.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Can remove 24p judder from any source.',\n", + " 'Excellent black uniformity.'],\n", + " 'Cons': ['Stutters in panning shots.',\n", + " 'No local dimming.',\n", + " 'Some scenes are overbrightened.']},\n", + " 'HDR Gaming': {'Value': '7.7',\n", + " 'Opinion': \"The Sony X85J is good for gaming in HDR. It has outstanding contrast and excellent black uniformity, so blacks look black in a dark room. It delivers a great gaming experience, with low input lag and a great response time, for a responsive gaming experience with little blur. Unfortunately, although it has two HDMI 2.1 ports for next-gen gaming, some advertised gaming features aren't available yet.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Low input lag.',\n", + " 'Great response time.'],\n", + " 'Cons': ['No local dimming.',\n", + " 'Gaming features not yet available.',\n", + " 'Some scenes are overbrightened.']},\n", + " 'PC Monitor': {'Value': '7.8',\n", + " 'Opinion': \"The Sony X85J is a good TV for use as a PC monitor. It has low input lag, so the cursor feels responsive and lag-free, and the fast response time results in relatively clear motion, with little blur behind fast-moving objects. Although it has great peak brightness, glare from direct reflections can still be an issue. Unfortunately, the image degrades at an angle, which can be an issue if you're too close, and it uses a BGR subpixel layout, which can cause text clarity issues on some computers.\",\n", + " 'Pros': ['Low input lag.',\n", + " 'Great response time.',\n", + " 'Great SDR peak brightness.'],\n", + " 'Cons': ['Image degrades at an angle.',\n", + " 'Direct reflections can be distracting.',\n", + " 'BGR subpixel layout can cause issues with text.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '1',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'm7-series-quantum-2021',\n", + " 'brand': 'vizio',\n", + " 'url': 'http://rtings.com/tv/reviews/vizio/m7-series-quantum-2021',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '7.7',\n", + " 'Opinion': \"The Vizio MQ7 is good for most uses. It performs best in dark rooms, like for watching movies, because it has a fantastic native contrast ratio for deep blacks. Its FreeSync support, low input lag, and quick response time make it great for gaming. It displays a wide color gamut for HDR content, but it doesn't get very bright in that mode to make highlights stand out. It's decent for watching TV shows and sports, but it has narrow viewing angles if you want to use it in a wide seating area.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Decent SDR brightness and reflection handling.',\n", + " 'Can cast anything using Google Chromecast or Apple AirPlay.',\n", + " 'FreeSync VRR support.'],\n", + " 'Cons': ['Unremarkable local dimming feature; causes some blooming.',\n", + " 'Narrow viewing angles; even worse than other VA panel TVs.',\n", + " 'HDMI 2.0 inputs and 60Hz panel.']},\n", + " 'Movies': {'Value': '8.1',\n", + " 'Opinion': \"The Vizio MQ7 is great for watching movies in a dark room. It has a VA panel with a fantastic native contrast ratio to display deep blacks. Black uniformity is good, and it has a full-array local dimming feature, but it's unremarkable and doesn't improve the picture quality much in dark scenes. The TV removes judder from native 24p sources but not from 60p/i sources.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Removes judder from 24p sources.',\n", + " 'Good black uniformity.'],\n", + " 'Cons': ['Unremarkable local dimming feature; causes some blooming.']},\n", + " 'TV Shows': {'Value': '7.3',\n", + " 'Opinion': 'The Vizio MQ7 is decent for watching TV shows in a bright room. It has decent peak brightness and decent reflection handling if you want to watch it in a room with a few lights. You can cast any show you want from your phone onto the TV. Sadly, there are some upscaling artifacts with 720p content, like from cable boxes. Also, it has narrow viewing angles so the image looks really inaccurate when viewing from the sides.',\n", + " 'Pros': ['Decent SDR brightness and reflection handling.',\n", + " 'Can cast anything using Google Chromecast or Apple AirPlay.'],\n", + " 'Cons': ['Narrow viewing angles; even worse than other VA panel TVs.',\n", + " 'Upscaling artifacts with lower-resolution content.']},\n", + " 'Sports': {'Value': '7.3',\n", + " 'Opinion': \"The Vizio MQ7 is decent for watching sports in well-lit rooms. It has a quick response time, so motion looks smooth for the most part. It's a good choice if you want to use it in a room with some lights around due to its decent reflection handling and peak brightness. Unfortunately, it's not a good choice for watching the big game with a large group of friends as the image looks washed out when viewing from the sides.\",\n", + " 'Pros': ['Decent SDR brightness and reflection handling.',\n", + " 'Quick response time.'],\n", + " 'Cons': ['Narrow viewing angles; even worse than other VA panel TVs.',\n", + " 'Upscaling artifacts with lower-resolution content.']},\n", + " 'Video Games': {'Value': '8.0',\n", + " 'Opinion': \"The Vizio MQ7 is great for gaming. Even though it's limited to a 60Hz panel, it still has FreeSync VRR support to reduce screen tearing. Input lag is low, and it has a quick response time, but you may notice some black smearing. It's great for dark room gaming because it has fantastic contrast and good black uniformity, but the local dimming feature doesn't improve the contrast all that much.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Quick response time.',\n", + " 'FreeSync VRR support.',\n", + " 'Very low input lag.'],\n", + " 'Cons': ['Unremarkable local dimming feature; causes some blooming.',\n", + " 'HDMI 2.0 inputs and 60Hz panel.']},\n", + " 'HDR Movies': {'Value': '7.8',\n", + " 'Opinion': \"The Vizio MQ7 is very good for watching HDR movies. It supports both Dolby Vision and HDR10+, so you can watch your favorite HDR content no matter the format it's in. It also displays a really wide color gamut for HDR content. It has a fantastic contrast ratio that displays deep blacks and has good black uniformity, but its local dimming feature is unremarkable. Also, it doesn't get bright enough to make highlights pop.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Good black uniformity.',\n", + " 'Displays very wide color gamut.'],\n", + " 'Cons': ['Unremarkable local dimming feature; causes some blooming.',\n", + " 'Low HDR peak brightness.']},\n", + " 'HDR Gaming': {'Value': '7.9',\n", + " 'Opinion': \"The Vizio MQ7 is very good for HDR gaming. It provides great gaming performances thanks to the VRR support, quick response time, and low input lag. HDR content looks good because it displays deep blacks and has a wide color gamut. Unfortunately, its full-array local dimming feature doesn't improve the contrast much, and it doesn't get bright enough to make highlights pop.\",\n", + " 'Pros': ['Fantastic native contrast ratio.',\n", + " 'Quick response time.',\n", + " 'FreeSync VRR support.',\n", + " 'Displays very wide color gamut.'],\n", + " 'Cons': ['Unremarkable local dimming feature; causes some blooming.',\n", + " 'HDMI 2.0 inputs and 60Hz panel.',\n", + " 'Low HDR peak brightness.']},\n", + " 'PC Monitor': {'Value': '7.7',\n", + " 'Opinion': \"The Vizio MQ7 is good to use as a PC monitor. It has a quick response time and low input lag for a responsive gaming experience. It's good to use in both dark and fairly well-lit rooms as it has a fantastic contrast ratio and decent peak brightness. It also displays chroma 4:4:4, which helps with text clarity when using it as a PC. Unfortunately, it has very narrow viewing angles, so the image looks washed out at the sides if you sit too close.\",\n", + " 'Pros': ['Decent SDR brightness and reflection handling.',\n", + " 'Quick response time.',\n", + " 'Very low input lag.'],\n", + " 'Cons': ['Narrow viewing angles; even worse than other VA panel TVs.',\n", + " 'HDMI 2.0 inputs and 60Hz panel.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '1',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'g1-oled',\n", + " 'brand': 'lg',\n", + " 'url': 'http://rtings.com/tv/reviews/lg/g1-oled',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.9',\n", + " 'Opinion': \"The LG G1 OLED is an amazing overall TV. It delivers stunning picture quality for dark room viewing because of its near-infinite contrast ratio and perfect black uniformity. It's also good to use in well-lit rooms for watching sports or TV shows as it has fantastic reflection handling, and the wide viewing angles make it suitable for wide seating areas. HDR content looks amazing as it displays a wide color gamut and has decent HDR peak brightness, enough to make highlights stand out. Gamers should appreciate the variable refresh rate (VRR) support and HDMI 2.1 inputs. Unfortunately, it has the risk of permanent burn-in, so it may not be the best choice to use solely as a PC monitor.\",\n", + " 'Pros': ['Near-infinite contrast ratio for perfect blacks.',\n", + " 'FreeSync, G-SYNC, and HDMI Forum VRR support.',\n", + " '120Hz panel with four HDMI 2.1 inputs.',\n", + " 'HDR brightness better than most OLEDs.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Aggressive ABL can get distracting with large areas of brightness.']},\n", + " 'Movies': {'Value': '9.4',\n", + " 'Opinion': \"The LG G1 is fantastic for watching movies. Thanks to its near-infinite contrast ratio, it displays perfect blacks without any blooming around bright objects. It can remove 24p judder from any source, which is great, but lower-frame rate content may appear to stutter due to the quick response time. It also doesn't have any trouble upscaling lower-resolution content.\",\n", + " 'Pros': ['Near-infinite contrast ratio for perfect blacks.',\n", + " 'No blooming around bright objects.',\n", + " 'Automatically removes 24p judder from any source.',\n", + " 'Fantastic reflection handling.'],\n", + " 'Cons': ['Risk of permanent burn-in.']},\n", + " 'TV Shows': {'Value': '8.3',\n", + " 'Opinion': \"The LG G1 is great for watching TV shows. It upscales lower-resolution content, like from cable boxes, without issues. It has wide viewing angles if you want to use it in a wide seating arrangement, so the image remains accurate from the side. The reflection handling is fantastic if you place it in a well-lit room, but it doesn't get extremely bright in SDR. Also, OLEDs have the risk of burn-in, which could be a problem if you constantly watch the same news channel all day.\",\n", + " 'Pros': ['Fantastic reflection handling.',\n", + " 'Wide viewing angles.',\n", + " 'Upscales lower-resolution content without issues.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Aggressive ABL can get distracting with large areas of brightness.']},\n", + " 'Sports': {'Value': '8.7',\n", + " 'Opinion': \"The LG G1 OLED is excellent for watching sports. Fast-moving content like players or balls look great thanks to the near-instant response time. It has wide viewing angles, making it a great choice for a wide seating arrangement. Even though it doesn't get very bright in SDR, it still has fantastic reflection handling, so glare shouldn't pose much of an issue. It also upscales 720p content, like from cable boxes, without any artifacts.\",\n", + " 'Pros': ['Fantastic reflection handling.',\n", + " 'Wide viewing angles.',\n", + " 'Upscales lower-resolution content without issues.',\n", + " 'Motion looks smooth due to near-instant response time.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Aggressive ABL can get distracting with large areas of brightness.']},\n", + " 'Video Games': {'Value': '9.3',\n", + " 'Opinion': \"The LG G1 is outstanding for video games. It's packed with gaming features like VRR support, HDMI 2.1 inputs, and a 120Hz panel, so you can easily play 4k games up to 120fps. It has a near-instant response time and low input lag for a responsive gaming experience. OLEDs can turn off individual pixels, resulting in a near-infinite contrast ratio and perfect black uniformity, with no blooming around bright objects, so it's a great choice for dark room gaming.\",\n", + " 'Pros': ['Near-infinite contrast ratio for perfect blacks.',\n", + " 'Motion looks smooth due to near-instant response time.',\n", + " 'FreeSync, G-SYNC, and HDMI Forum VRR support.',\n", + " '120Hz panel with four HDMI 2.1 inputs.'],\n", + " 'Cons': ['Risk of permanent burn-in.']},\n", + " 'HDR Movies': {'Value': '8.8',\n", + " 'Opinion': \"The LG G1 OLED is amazing for watching HDR content. It's fantastic for dark room viewing because it has a near-infinite contrast ratio and perfect black uniformity. It displays a wide color gamut for HDR content, and even though it doesn't get as bright as LED TVs, it's still one of the brightest OLEDs we've tested, so small highlights pop in HDR. It supports Dolby Vision and HDR10, but not HDR10+, so some content may use the standard HDR10 format instead.\",\n", + " 'Pros': ['Near-infinite contrast ratio for perfect blacks.',\n", + " 'No blooming around bright objects.',\n", + " 'HDR brightness better than most OLEDs.',\n", + " 'Displays wide color gamut.'],\n", + " 'Cons': ['Risk of permanent burn-in.']},\n", + " 'HDR Gaming': {'Value': '9.1',\n", + " 'Opinion': \"The LG G1 is incredible for HDR gaming. It has a bunch of gamer-friendly features like FreeSync support, G-SYNC compatibility, and HDMI 2.1 inputs. It delivers a responsive gaming experience thanks to its near-instant response time and low input lag. HDR content looks excellent because it has a high native contrast ratio that displays perfect blacks, and there's no blooming around bright objects. It has okay peak brightness in Game Mode, but small highlights still pop how they should.\",\n", + " 'Pros': ['Near-infinite contrast ratio for perfect blacks.',\n", + " 'Motion looks smooth due to near-instant response time.',\n", + " 'FreeSync, G-SYNC, and HDMI Forum VRR support.',\n", + " '120Hz panel with four HDMI 2.1 inputs.',\n", + " 'HDR brightness better than most OLEDs.'],\n", + " 'Cons': ['Risk of permanent burn-in.']},\n", + " 'PC Monitor': {'Value': '8.9',\n", + " 'Opinion': 'The LG G1 OLED is excellent to use as a PC monitor. It provides a responsive gaming experience because it has low input lag and a quick response time. It has wide viewing angles, so the image remains accurate if you sit too close or need to share your screen with someone else. It has fantastic reflection handling if you want to use it in a well-lit room, but its peak brightness is only okay. Sadly, OLEDs risk permanent burn-in, which could pose a problem if it constantly displays the same UI elements.',\n", + " 'Pros': ['Fantastic reflection handling.',\n", + " 'Wide viewing angles.',\n", + " 'Displays chroma 4:4:4 at any resolution.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Risk of permanent burn-in.',\n", + " 'Aggressive ABL can get distracting with large areas of brightness.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '3',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'qned90',\n", + " 'brand': 'lg',\n", + " 'url': 'http://rtings.com/tv/reviews/lg/qned90',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '7.9',\n", + " 'Opinion': \"The LG QNED90 is a very good TV overall. With wide viewing angles, high peak brightness, and decent reflection handling, it's a great choice for watching TV shows and a good TV for watching sports. It's great for gaming, with low input lag and a fast response time. It has high contrast with local dimming, but there's some blooming in dark scenes, and it has sub-par black uniformity, but it's still good for watching movies in a dark room. Finally, it's an excellent TV for use as a PC monitor, but some uniformity issues might be distracting.\",\n", + " 'Pros': ['Gets bright enough to overcome glare.',\n", + " 'Impressive viewing angles.',\n", + " 'Outstanding contrast with local dimming.',\n", + " 'Very good response time.'],\n", + " 'Cons': ['Noticeable uniformity issues in areas of similar colors.']},\n", + " 'Movies': {'Value': '7.6',\n", + " 'Opinion': \"The LG QNED90 is a good TV for watching movies in a dark room. It has fantastic contrast with local dimming and a decent local dimming feature overall. It upscales lower resolution content well, and it has a huge selection of streaming apps if you prefer to stream the latest movies. Unfortunately, it has sub-par black uniformity, and despite the local dimming feature, there's noticeable blooming in some scenes, which can be distracting if you watch movies with subtitles.\",\n", + " 'Pros': ['Low resolution content is upscaled well.',\n", + " 'Outstanding contrast with local dimming.',\n", + " 'Removes 24p judder from any source.'],\n", + " 'Cons': ['Some blooming in dark scenes.',\n", + " 'Noticeable uniformity issues in areas of similar colors.']},\n", + " 'TV Shows': {'Value': '8.1',\n", + " 'Opinion': \"The LG QNED90 is a great TV for watching shows during the day. It has decent reflection handling and amazing peak brightness in SDR, so glare shouldn't be an issue. It also has impressive viewing angles, so the image doesn't degrade if you have a wide seating area. Finally, the built-in WebOS smart interface has a huge selection of apps, so you're sure to find something to watch.\",\n", + " 'Pros': ['Low resolution content is upscaled well.',\n", + " 'Gets bright enough to overcome glare.',\n", + " 'Impressive viewing angles.'],\n", + " 'Cons': ['Noticeable uniformity issues in areas of similar colors.']},\n", + " 'Sports': {'Value': '7.8',\n", + " 'Opinion': \"The LG QNED90 is a good TV for watching sports. It has decent reflection handling and high peak brightness, so glare shouldn't be an issue. The image remains accurate at an angle, great if you like to watch the game with a large group of friends. It also has a fast response time, and it upscales lower resolution content well, including sports channels from a cable box. Unfortunately, some noticeable uniformity issues might be distracting, but this varies between units.\",\n", + " 'Pros': ['Gets bright enough to overcome glare.',\n", + " 'Impressive viewing angles.',\n", + " 'Very good response time.'],\n", + " 'Cons': ['Noticeable uniformity issues in areas of similar colors.']},\n", + " 'Video Games': {'Value': '8.1',\n", + " 'Opinion': \"The LG QNED90 is a great TV for playing video games. It has a few great gaming features, including support for variable refresh rates. It's fully compatible with the latest consoles, and it has low input lag for a responsive gaming experience. It also has a very good response time, with little blur behind fast-moving objects. Unfortunately, although it has a high contrast ratio with local dimming, there's noticeable blooming in dark scenes, and our unit has some uniformity issues that can be distracting while gaming.\",\n", + " 'Pros': ['Outstanding contrast with local dimming.',\n", + " 'Very good response time.',\n", + " 'Great gaming features including VRR support.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Some blooming in dark scenes.',\n", + " 'Noticeable uniformity issues in areas of similar colors.']},\n", + " 'HDR Movies': {'Value': '7.6',\n", + " 'Opinion': \"The LG QNED90 is a good TV for watching movies in HDR in a dark room. It has fantastic contrast with local dimming, and the local dimming feature itself is decent overall. It has impressive peak brightness in HDR, so small highlights in some scenes stand out, and it can display a wide color gamut. Unfortunately, there are some uniformity issues, and there's noticeable blooming in dark scenes, which may be distracting.\",\n", + " 'Pros': ['Outstanding contrast with local dimming.',\n", + " 'Removes 24p judder from any source.'],\n", + " 'Cons': ['Some blooming in dark scenes.',\n", + " 'Noticeable uniformity issues in areas of similar colors.']},\n", + " 'HDR Gaming': {'Value': '8.1',\n", + " 'Opinion': \"The LG QNED90 is a very good TV for playing video games in HDR. It has fantastic low input lag when gaming, even in HDR, and a very good response time, so there's little blur behind fast-moving objects. It has impressive peak brightness in HDR, and the contrast with local dimming is fantastic. It also has a decent local dimming feature, but there's still some blooming in dark scenes, which may be distracting. Finally, it has a good selection of extra gaming features, including support for variable refresh rates.\",\n", + " 'Pros': ['Outstanding contrast with local dimming.',\n", + " 'Very good response time.',\n", + " 'Great gaming features including VRR support.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Some blooming in dark scenes.',\n", + " 'Noticeable uniformity issues in areas of similar colors.']},\n", + " 'PC Monitor': {'Value': '8.7',\n", + " 'Opinion': \"The LG QNED90 is an excellent TV for use as a PC monitor, with a few limitations. It has wide viewing angles, so you can sit fairly close without the sides of the screen degrading. It has low input lag and a fast response time, with very little blur behind fast-moving objects. It can display chroma 4:4:4 properly, which is important for clear text, but only from a 4k source. It has decent reflection handling, so glare shouldn't be an issue for most people.\",\n", + " 'Pros': ['Gets bright enough to overcome glare.',\n", + " 'Impressive viewing angles.',\n", + " 'Very good response time.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Noticeable uniformity issues in areas of similar colors.',\n", + " \"Can't display chroma 4:4:4 properly with certain resolutions.\"]}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '3',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '0',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': '5-series-s546-2021-qled',\n", + " 'brand': 'tcl',\n", + " 'url': 'http://rtings.com/tv/reviews/tcl/5-series-s546-2021-qled',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '7.7',\n", + " 'Opinion': \"The TCL 5 Series is a good TV for most uses. It's great for gaming because it has VRR support, a quick response time, and low input lag for responsive gaming. It's very good for watching movies in SDR or HDR because it displays deep blacks and has a full-array local dimming feature, but the local dimming isn't anything special. It's good for watching sports and decent for TV shows because it gets bright and has decent reflection handling. However, it has narrow viewing angles and doesn't properly upscale 480p content like from DVDs.\",\n", + " 'Pros': ['VA panel with high contrast ratio.',\n", + " 'Displays 720p, 1080p, and 4k content well.',\n", + " 'Gets bright in SDR.',\n", + " 'Quick response time for smooth motion.'],\n", + " 'Cons': ['Local dimming raises the black level and causes blooming.',\n", + " \"Can't properly upscale 480p content, like from DVDs.\",\n", + " 'Narrow viewing angles.']},\n", + " 'Movies': {'Value': '7.9',\n", + " 'Opinion': \"The TCL S546 is very good for watching movies in dark rooms. It has a VA panel with a high native contrast ratio for deep blacks and excellent black uniformity. It has a full-array local dimming feature that isn't bad, but it causes blooming around bright objects and seems to raise the black levels. This TV doesn't have trouble displaying 1080p or 4k content, but it has problems properly upscaling 480p content, so it's not a good choice for watching DVDs.\",\n", + " 'Pros': ['VA panel with high contrast ratio.',\n", + " 'Displays 720p, 1080p, and 4k content well.',\n", + " 'Removes judder from 24p sources.'],\n", + " 'Cons': ['Local dimming raises the black level and causes blooming.',\n", + " \"Can't properly upscale 480p content, like from DVDs.\"]},\n", + " 'TV Shows': {'Value': '7.4',\n", + " 'Opinion': 'The TCL S546 is decent for watching TV shows in a bright room. It has decent reflection handling, and it gets bright enough to fight glare in most well-lit rooms. It displays 720p content like from cable boxes well, but it has trouble with 480p content if you watch standard definition TV shows or DVDs. It also has narrow viewing angles, so the image appears washed out from the sides.',\n", + " 'Pros': ['Gets bright in SDR.', 'Decent reflection handling.'],\n", + " 'Cons': [\"Can't properly upscale 480p content, like from DVDs.\",\n", + " 'Narrow viewing angles.']},\n", + " 'Sports': {'Value': '7.6',\n", + " 'Opinion': \"The TCL 5 Series 2021 is good for watching sports. Motion looks smooth thanks to the quick response time, and it performs well in bright rooms because it gets bright enough to fight glare and has decent reflection handling. Unfortunately, our unit has signs of dirty screen effect in the center, which could be noticeable during sports. Its viewing angles are also narrow, so it's not a good choice for watching sports with a large group of friends.\",\n", + " 'Pros': ['Displays 720p, 1080p, and 4k content well.',\n", + " 'Gets bright in SDR.',\n", + " 'Quick response time for smooth motion.'],\n", + " 'Cons': ['Narrow viewing angles.',\n", + " 'Uniformity issues with dirty screen effect.']},\n", + " 'Video Games': {'Value': '8.0',\n", + " 'Opinion': \"The TCL S546 is great for gaming. It has a quick response time and low input lag for a smooth and responsive gaming experience. It has a few extra gaming features like FreeSync and ALLM support, but it's limited to HDMI 2.0, so you can't take full advantage of the PS5 or Xbox Series X. It's great for dark room gaming as it has a high contrast ratio, but the local dimming feature isn't anything special.\",\n", + " 'Pros': ['VA panel with high contrast ratio.',\n", + " 'Displays 720p, 1080p, and 4k content well.',\n", + " 'Quick response time for smooth motion.',\n", + " 'VRR support.'],\n", + " 'Cons': ['Local dimming raises the black level and causes blooming.',\n", + " 'Limited to HDMI 2.0 inputs.']},\n", + " 'HDR Movies': {'Value': '7.8',\n", + " 'Opinion': \"The TCL 5 Series is very good for watching HDR movies. It delivers deep and uniform blacks thanks to its fantastic contrast and excellent uniformity. It has a full-array local dimming feature, but it doesn't do much to improve the picture quality in dark scenes as there's blooming around bright objects. It supports both HDR10+ and Dolby Vision and displays a wide color gamut, but doesn't get bright enough to make highlights pop.\",\n", + " 'Pros': ['VA panel with high contrast ratio.',\n", + " 'Displays 720p, 1080p, and 4k content well.',\n", + " 'Wide color gamut.'],\n", + " 'Cons': ['Local dimming raises the black level and causes blooming.',\n", + " 'Mediocre peak brightness in HDR.']},\n", + " 'HDR Gaming': {'Value': '7.9',\n", + " 'Opinion': \"The TCL S546 is very good for HDR gaming. It has great gaming features like a great response time, low input lag, and VRR support. However, it has a 60Hz panel and HDMI 2.0 inputs, so you're limited to 4k @ 60 fps games. HDR content also looks good because it displays deep blacks and has a wide color gamut, but it doesn't get very bright in HDR, and its local dimming feature causes blooming around bright objects.\",\n", + " 'Pros': ['VA panel with high contrast ratio.',\n", + " 'Quick response time for smooth motion.',\n", + " 'VRR support.'],\n", + " 'Cons': ['Local dimming raises the black level and causes blooming.',\n", + " 'Mediocre peak brightness in HDR.']},\n", + " 'PC Monitor': {'Value': '7.9',\n", + " 'Opinion': 'The TCL 5 Series is very good to use as a PC monitor. It has low input lag for a responsive desktop experience, and motion looks good thanks to the quick response time. It displays chroma 4:4:4 with 1080p and 4k signals, which is important for reading text. However, our unit has gray uniformity issues noticeable with web pages or documents and has narrow viewing angles, meaning the image looks inaccurate at the edges if you sit too close.',\n", + " 'Pros': ['Gets bright in SDR.',\n", + " 'Quick response time for smooth motion.',\n", + " 'Displays chroma 4:4:4 with 1080p and 4k signals.'],\n", + " 'Cons': ['Narrow viewing angles.',\n", + " 'Uniformity issues with dirty screen effect.']}},\n", + " 'Inputs': {'HDMI': '3',\n", + " 'USB': '1',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'u7g',\n", + " 'brand': 'hisense',\n", + " 'url': 'http://rtings.com/tv/reviews/hisense/u7g',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.1',\n", + " 'Opinion': \"The Hisense U7G is a great TV for most uses. It looks good in almost any setting, with high peak brightness and good reflection handling for bright rooms and a decent local dimming feature and high contrast for dark room viewing. It's great for gaming or use as a PC monitor, with low input lag, some advanced gaming features, and a good response time. On the other hand, it's not as good for a wide seating area or for watching sports with a large group of friends, as the image degrades at an angle.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Amazing peak brightness in SDR.',\n", + " 'Good reflection handling.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.']},\n", + " 'Movies': {'Value': '8.3',\n", + " 'Opinion': \"The Hisense U7G is an impressive TV for watching movies in a dark room. It has outstanding contrast, so blacks appear black in a dark room, and it has good black uniformity and a decent local dimming system, so there's not too much blooming. It's also amazingly bright in SDR, and low-resolution content is upscaled well, so movies on Blu-ray or DVD look great. It also automatically removes judder from any source without adding any soap opera effect. On the other hand, like most modern TVs, there's some noticeable stutter, especially in slow-panning shots.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Amazing peak brightness in SDR.',\n", + " 'Low-resolution content is upscaled without any issues.',\n", + " 'Judder-free playback from any source.'],\n", + " 'Cons': ['Some stutter in panning shots.']},\n", + " 'TV Shows': {'Value': '7.9',\n", + " 'Opinion': \"The Hisense U7G is a very good TV for watching TV shows during the day. It has amazing peak brightness in SDR and good reflection handling, so glare shouldn't cause any issues in a brighter room. Low-resolution content is upscaled well, great for watching older shows on DVD, and the smart interface has a large selection of streaming apps. On the other hand, the image degrades when viewed at an angle, so it's not the best if you like to move around with a show playing.\",\n", + " 'Pros': ['Amazing peak brightness in SDR.',\n", + " 'Low-resolution content is upscaled without any issues.',\n", + " 'Good reflection handling.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.']},\n", + " 'Sports': {'Value': '7.6',\n", + " 'Opinion': \"The Hisense U7G is a good TV for watching sports, with some limitations. It has amazing peak brightness in SDR and good reflection handling, so glare shouldn't be an issue for those Sunday afternoon games. It has a good response time, so you can actually see most of what's going on and not a big blurry mess, and cable channels are upscaled well. On the other hand, the image degrades when viewed at an angle, so it's not as good for a large group of friends or if you have a wide seating area, and there are some minor uniformity issues.\",\n", + " 'Pros': ['Amazing peak brightness in SDR.',\n", + " 'Low-resolution content is upscaled without any issues.',\n", + " 'Good reflection handling.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.',\n", + " 'Some noticeable dirty screen effect.']},\n", + " 'Video Games': {'Value': '8.4',\n", + " 'Opinion': \"The Hisense U7G is an impressive TV for gaming. It has outstanding low input lag for a responsive gaming experience and a good response time, so fast-moving objects look relatively clear. It supports a few advanced gaming features, including FreeSync, but G-SYNC isn't working at the moment, which is strange. It also delivers a great picture when gaming, with outstanding contrast, and the local dimming feature and peak brightness aren't diminished at all when in Game Mode.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Amazing peak brightness in SDR.',\n", + " 'Outstanding low input lag.',\n", + " 'Great gaming features like FreeSync.'],\n", + " 'Cons': [\"G-SYNC compatible doesn't work at the moment.\"]},\n", + " 'HDR Movies': {'Value': '8.2',\n", + " 'Opinion': \"The Hisense U7G is a great TV for watching movies in HDR in a dark room. It has outstanding contrast, which is one of the most important factors in good HDR picture quality. It has good peak brightness, and small highlights stand out in HDR, and it can display a great wide color gamut. Movies are always judder-free, as this TV removes judder from all sources automatically, and it has a large selection of streaming apps. Unfortunately, there's some stutter that might bother some people, but it's not too bad and mainly noticeable in slow-panning shots.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Small highlights stand out.',\n", + " 'Great wide color gamut.',\n", + " 'Judder-free playback from any source.'],\n", + " 'Cons': ['Some stutter in panning shots.']},\n", + " 'HDR Gaming': {'Value': '8.3',\n", + " 'Opinion': \"The Hisense U7G is great for gaming in HDR. It delivers a great gaming experience with low input lag and a good response time. It has a few advanced gaming features like FreeSync variable refresh rate technology (VRR), but G-SYNC isn't working at the moment, which is odd. It also delivers a great overall HDR experience, with outstanding contrast, so blacks look black in a dark room, and a decent local dimming feature. It also has good peak brightness in HDR, so small highlights in some games stand out.\",\n", + " 'Pros': ['Outstanding contrast.',\n", + " 'Outstanding low input lag.',\n", + " 'Small highlights stand out.',\n", + " 'Great wide color gamut.',\n", + " 'Great gaming features like FreeSync.'],\n", + " 'Cons': [\"G-SYNC compatible doesn't work at the moment.\"]},\n", + " 'PC Monitor': {'Value': '8.1',\n", + " 'Opinion': \"The Hisense U7G is a very good TV for use as a PC monitor, with some limitations. It has outstanding low input lag and a good response time, and it supports most common resolutions, like 1080p and 1440p. It has amazing peak brightness and good reflection handling, so glare shouldn't be an issue. Unfortunately, it uses a suboptimal BGR subpixel structure, so there can be issues with some text. Also, the image degrades at an angle, so it's important not to sit too close, or the image will degrade at the edges.\",\n", + " 'Pros': ['Amazing peak brightness in SDR.',\n", + " 'Outstanding low input lag.',\n", + " 'Good reflection handling.'],\n", + " 'Cons': ['Image degrades when viewed at an angle.',\n", + " 'Suboptimal BGR subpixel layout.',\n", + " 'Some noticeable dirty screen effect.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (incl. adapter)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'x95j',\n", + " 'brand': 'sony',\n", + " 'url': 'http://rtings.com/tv/reviews/sony/x95j',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.2',\n", + " 'Opinion': \"The Sony X95J is a great TV for most uses. It's a great TV for watching movies in both SDR and HDR, as it's bright and has good contrast. It's bright enough to overcome glare, and it has surprisingly fair viewing angles, making it a very good choice for watching sports. Gamers will appreciate its low input lag, great response time, and HDMI 2.1 support, but unfortunately, it doesn't support variable refresh rate technology at the moment.\",\n", + " 'Pros': ['Bright enough to overcome glare.',\n", + " 'Huge selection of streaming apps.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Some uniformity issues in dark scenes.']},\n", + " 'Movies': {'Value': '8.2',\n", + " 'Opinion': \"The Sony X95J is a great TV for watching movies in a dark room. It has a good contrast ratio, and the amazing local dimming feature helps to improve dark room performance. It upscales lower resolution content well and has a huge selection of apps if you like to stream movies. It can remove judder from any source, but there's some noticeable stutter when watching movies.\",\n", + " 'Pros': ['Amazing local dimming feature.',\n", + " 'Can remove judder from any source.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Some noticeable stutter in low frame rate content.',\n", + " 'Some uniformity issues in dark scenes.']},\n", + " 'TV Shows': {'Value': '8.4',\n", + " 'Opinion': \"The Sony X95J is an impressive TV for watching TV shows during the day. It has excellent reflection handling and gets bright enough to easily overcome glare in a bright room. There's a huge selection of streaming apps, so you're sure to find your favorite shows, and it upscales older content well. Although it has surprisingly fair viewing angles, it's not the best choice if you like to move around the house with the TV on.\",\n", + " 'Pros': ['Bright enough to overcome glare.',\n", + " 'Huge selection of streaming apps.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Image degrades at a moderate angle.']},\n", + " 'Sports': {'Value': '8.1',\n", + " 'Opinion': \"The Sony X95J is a very good TV for watching sports in a bright room. It gets plenty bright enough to overcome glare, and it has excellent reflection handling. It has a great response time, so you can see what's going and not just a blurry mess in fast-paced sports. Although the viewing angle is fair, it's not the best choice for a wide seating area. Unfortunately, it has just decent gray uniformity, and there are some uniformity issues on our unit.\",\n", + " 'Pros': ['Bright enough to overcome glare.',\n", + " 'Upscales lower resolution content well.',\n", + " 'Great response time.'],\n", + " 'Cons': ['Image degrades at a moderate angle.']},\n", + " 'Video Games': {'Value': '8.4',\n", + " 'Opinion': \"The Sony X95J is an impressive TV for playing video games. It has a great response time, with very little blur behind fast-moving objects, and it has outstanding low input lag. It's also future-proof, with two HDMI 2.1 inputs for next-gen consoles or a PC. Unfortunately, it doesn't support variable refresh rates at the moment, but this has been promised for a future firmware update.\",\n", + " 'Pros': ['Amazing local dimming feature.',\n", + " 'Outstanding low input lag.',\n", + " 'Bright enough to overcome glare.',\n", + " 'HDMI 2.1 support.',\n", + " 'Great response time.'],\n", + " 'Cons': ['Variable refresh rate support not yet available.',\n", + " 'Some uniformity issues in dark scenes.']},\n", + " 'HDR Movies': {'Value': '8.1',\n", + " 'Opinion': \"The Sony X95J is a very good TV for watching HDR movies in a dark room. It has good contrast and an amazing local dimming feature. It has excellent peak brightness in HDR, so bright highlights stand out. Unfortunately, there are some uniformity issues in dark scenes, and it can't display a wide color gamut, but this likely isn't very noticeable for most people.\",\n", + " 'Pros': ['Amazing local dimming feature.',\n", + " 'Can remove judder from any source.',\n", + " 'Excellent peak brightness in HDR.'],\n", + " 'Cons': ['Some noticeable stutter in low frame rate content.',\n", + " \"Can't quite display a wide color gamut.\",\n", + " 'Some uniformity issues in dark scenes.']},\n", + " 'HDR Gaming': {'Value': '8.4',\n", + " 'Opinion': \"The Sony X95J delivers a great gaming experience in HDR. It has a great response time, resulting in clear motion. It also has low input lag for a responsive gaming experience. It has excellent peak brightness in HDR, so bright highlights stand out. Although it has good contrast, it has just okay black uniformity, and there are some noticeable uniformity issues in dark scenes. Unfortunately, it doesn't currently support any variable refresh rate technologies, but it should receive an update that adds it.\",\n", + " 'Pros': ['Amazing local dimming feature.',\n", + " 'Outstanding low input lag.',\n", + " 'HDMI 2.1 support.',\n", + " 'Excellent peak brightness in HDR.',\n", + " 'Great response time.'],\n", + " 'Cons': ['Variable refresh rate support not yet available.',\n", + " \"Can't quite display a wide color gamut.\",\n", + " 'Some uniformity issues in dark scenes.']},\n", + " 'PC Monitor': {'Value': '8.2',\n", + " 'Opinion': \"The Sony X95J is a great TV for use as a PC monitor. It has excellent reflection handling and amazing peak brightness, so it can easily overcome glare in a bright room. It supports most common resolutions and can display chroma 4:4:4 properly in most of them, which is important for clear text. Unfortunately, although it has fair viewing angles, the edges of the screen might appear non-uniform if you're sitting too close.\",\n", + " 'Pros': ['Outstanding low input lag.',\n", + " 'Bright enough to overcome glare.',\n", + " 'HDMI 2.1 support.',\n", + " 'Great response time.'],\n", + " 'Cons': ['Some uniformity issues in dark scenes.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '3',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '1',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'p-series-quantum-2021',\n", + " 'brand': 'vizio',\n", + " 'url': 'http://rtings.com/tv/reviews/vizio/p-series-quantum-2021',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.2',\n", + " 'Opinion': \"The Vizio P Series is great for most uses. It performs really well for watching movies in dark rooms thanks to its high contrast and decent local dimming feature. Even in well-lit rooms, it gets bright enough to combat glare and has amazing reflection handling. It's impressive for watching HDR content as it displays a wide color gamut and gets bright. It has a few gaming features like variable refresh rate support, but its response time is only decent, and it has issues with 4k games at 120fps.\",\n", + " 'Pros': ['Displays deep blacks due to high contrast.',\n", + " 'Decent full-array local dimming helps improve the contrast.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " '120Hz panel and VRR support.'],\n", + " 'Cons': ['Has trouble upscaling 480p and 720p content properly.',\n", + " 'Only decent response time; black smearing is visible.',\n", + " 'HDMI 2.1 support only fully works with gaming consoles and not PCs.']},\n", + " 'Movies': {'Value': '8.3',\n", + " 'Opinion': \"The Vizio P Series is great for watching movies in dark rooms. It has a VA panel with a high native contrast that displays deep blacks, and it has a decent full-array local dimming feature to improve the contrast. It doesn't have trouble upscaling 1080p content like from Blu-rays, but we don't suggest using it for DVDs. Also, it removes judder from native 24p sources, but not via 60p or 60i sources.\",\n", + " 'Pros': ['Displays deep blacks due to high contrast.',\n", + " 'Removes 24p judder from native apps and Blu-rays.',\n", + " 'Decent full-array local dimming helps improve the contrast.'],\n", + " 'Cons': ['Some blooming around bright objects in dark scenes.',\n", + " 'Has trouble upscaling 480p and 720p content properly.']},\n", + " 'TV Shows': {'Value': '8.0',\n", + " 'Opinion': \"The Vizio PQ9 is great for watching TV shows in a bright room. It gets bright enough to combat glare and has amazing reflection handling, so visibility shouldn't be an issue. You can cast anything you want from your phone if you want to stream your favorite shows. However, it's not as good as other 4k TVs at upscaling 720p content, and it has narrow viewing angles, so the image looks washed out at the sides.\",\n", + " 'Pros': ['High peak brightness in SDR and HDR.',\n", + " 'Amazing reflection handling.',\n", + " 'Can cast anything you want from your phone.'],\n", + " 'Cons': ['Has trouble upscaling 480p and 720p content properly.',\n", + " 'Narrow viewing angles.']},\n", + " 'Sports': {'Value': '7.6',\n", + " 'Opinion': \"The Vizio P Series TV is good for watching sports in well-lit environments. Its reflection handling is amazing, and it has excellent peak brightness, so glare shouldn't be an issue in most bright rooms. Sadly, you may notice motion blur with fast-moving players or balls because the response time is only decent. It also has narrow viewing angles, so it's not an ideal choice for watching the game in a large viewing area.\",\n", + " 'Pros': ['High peak brightness in SDR and HDR.',\n", + " 'Amazing reflection handling.',\n", + " 'Can cast anything you want from your phone.'],\n", + " 'Cons': ['Has trouble upscaling 480p and 720p content properly.',\n", + " 'Narrow viewing angles.',\n", + " 'Only decent response time; black smearing is visible.']},\n", + " 'Video Games': {'Value': '8.5',\n", + " 'Opinion': \"The Vizio P65Q9 is excellent for gaming. It has a 120Hz panel with FreeSync support, but there are some issues getting the VRR to work in 4k at 120Hz. Its HDMI 2.1 inputs also only seem to work to their full capabilities with consoles and not PCs. Input lag is really low, and even though it has a decent response time, there's still visible motion blur with fast-moving content.\",\n", + " 'Pros': ['Displays deep blacks due to high contrast.',\n", + " 'Decent full-array local dimming helps improve the contrast.',\n", + " '120Hz panel and VRR support.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Only decent response time; black smearing is visible.',\n", + " 'HDMI 2.1 support only fully works with gaming consoles and not PCs.']},\n", + " 'HDR Movies': {'Value': '8.4',\n", + " 'Opinion': 'The Vizio PQ9 is impressive for HDR content. Its VA panel displays deep and uniform blacks and the local dimming feature does a decent job at improving the picture quality in dark scenes. It displays a really wide color gamut for HDR content and gets bright enough to make highlights pop the way the creator intended.',\n", + " 'Pros': ['Displays deep blacks due to high contrast.',\n", + " 'Decent full-array local dimming helps improve the contrast.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " 'Displays really wide color gamut.'],\n", + " 'Cons': ['Some blooming around bright objects in dark scenes.']},\n", + " 'HDR Gaming': {'Value': '8.5',\n", + " 'Opinion': 'The Vizio P Series Quantum TV is excellent for HDR gaming. It has excellent gaming performance thanks to its 120Hz panel, FreeSync support, and low input lag. It has HDMI 2.1 inputs, but there are issues properly displaying 4k games up to 120fps. In terms of HDR, it has a high native contrast, decent local dimming, a wide color gamut, and high peak brightness, so highlights pop and colors are vivid.',\n", + " 'Pros': ['Displays deep blacks due to high contrast.',\n", + " 'High peak brightness in SDR and HDR.',\n", + " '120Hz panel and VRR support.',\n", + " 'Low input lag.',\n", + " 'Displays really wide color gamut.'],\n", + " 'Cons': ['Some blooming around bright objects in dark scenes.',\n", + " 'Only decent response time; black smearing is visible.',\n", + " 'HDMI 2.1 support only fully works with gaming consoles and not PCs.']},\n", + " 'PC Monitor': {'Value': '8.0',\n", + " 'Opinion': \"The Vizio P Series is great to use as a PC monitor. It has low input lag for a responsive desktop experience, but its response time is just decent. It has amazing reflection handling and excellent peak brightness if you want to use it in a bright room, but it has narrow viewing angles, so the edges look washed out if you sit too close. Also, it only displays chroma 4:4:4 with 1080p and 4k signals at 60Hz, as it can't do it with 120Hz signals.\",\n", + " 'Pros': ['High peak brightness in SDR and HDR.',\n", + " 'Amazing reflection handling.',\n", + " '120Hz panel and VRR support.',\n", + " 'Low input lag.'],\n", + " 'Cons': ['Narrow viewing angles.',\n", + " 'Only decent response time; black smearing is visible.',\n", + " 'HDMI 2.1 support only fully works with gaming consoles and not PCs.',\n", + " \"Can't display chroma 4:4:4 with any 120Hz signal; limited to 60Hz.\"]}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '1',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'a1-oled',\n", + " 'brand': 'lg',\n", + " 'url': 'http://rtings.com/tv/reviews/lg/a1-oled',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.5',\n", + " 'Opinion': \"The LG A1 OLED is an excellent TV for pretty much any usage. Deep, inky blacks make it an outstanding choice for watching movies in the dark. The low input lag and nearly instantaneous response times help deliver an amazing experience playing games in SDR or HDR. It's also great for watching sports or TV shows thanks to the wide viewing angles and superb reflection handling, but it can't get very bright, so it's not ideal for a bright environment.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Nearly instantaneous response time.',\n", + " 'Superb viewing angles.',\n", + " 'Perfect black uniformity.'],\n", + " 'Cons': ['Risk of permanent burn-in with static content.',\n", + " 'Not bright enough to overcome glare.']},\n", + " 'Movies': {'Value': '9.3',\n", + " 'Opinion': \"The LG A1 is an outstanding TV for watching movies. The OLED panel delivers perfect inky blacks with no blooming, and it has great gray uniformity. Older movies are upscaled well, with no noticeable artifacts. Unfortunately, it can't remove judder from all sources, which might bother some people, and the nearly instantaneous response time results in some noticeable stutter, especially in slow-panning shots.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Lower resolution content is upscaled well.',\n", + " 'Perfect black uniformity.'],\n", + " 'Cons': ['Some stutter in low frame rate content.',\n", + " \"Can't remove judder from all sources.\"]},\n", + " 'TV Shows': {'Value': '8.0',\n", + " 'Opinion': \"The LG A1 OLED is great for watching TV Shows during the day. It has outstanding viewing angles, making it a great choice if you like to walk around with the TV on, and the smart interface has a huge selection of streaming apps. It also has remarkable reflection handling, but, unfortunately, it can't get very bright, so it's not the best choice for a bright viewing environment. Low-resolution content is upscaled well, great for watching older shows, and it has impressive gray uniformity.\",\n", + " 'Pros': ['Superb viewing angles.',\n", + " 'Lower resolution content is upscaled well.'],\n", + " 'Cons': ['Risk of permanent burn-in with static content.',\n", + " 'Not bright enough to overcome glare.']},\n", + " 'Sports': {'Value': '8.0',\n", + " 'Opinion': \"The LG A1 OLED is a very good TV for watching sports. The nearly-instantaneous response time results in very little blur behind fast-moving objects. Although it has outstanding reflection handling, it's not very bright, so it's not a great choice for a brighter environment. On the other hand, the outstanding viewing angles make it a great choice for watching the big game with a large group of friends, and it has impressive gray uniformity.\",\n", + " 'Pros': ['Nearly instantaneous response time.',\n", + " 'Superb viewing angles.',\n", + " 'Lower resolution content is upscaled well.'],\n", + " 'Cons': ['Risk of permanent burn-in with static content.',\n", + " 'Not bright enough to overcome glare.']},\n", + " 'Video Games': {'Value': '8.7',\n", + " 'Opinion': \"The LG A1 is an excellent TV for playing video games. The OLED panel has a nearly instantaneous response time, so there's almost no blur behind fast-moving objects, and it has outstanding low input lag, for a responsive gaming experience. On the other hand, it's not very future-proof, as doesn't have any HDMI 2.1 inputs, doesn't support variable refresh rate technology, and is limited to a 60Hz refresh rate.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Nearly instantaneous response time.',\n", + " 'Very low input lag.',\n", + " 'Perfect black uniformity.'],\n", + " 'Cons': ['Risk of permanent burn-in with static content.',\n", + " \"Doesn't support variable refresh rates or HDMI 2.1.\"]},\n", + " 'HDR Movies': {'Value': '8.6',\n", + " 'Opinion': \"The LG A1 OLED is excellent for watching movies in HDR. The nearly-infinite contrast ratio results in perfect blacks with no blooming, without the need for a local dimming feature. It also has an amazing color gamut, with nearly perfect coverage of the DCI P3 color space used by most current HDR content. Unfortunately, it has disappointing peak brightness in HDR, though, so small highlights in many scenes don't stand out the way the content creator intended.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Wide color gamut.',\n", + " 'Perfect black uniformity.'],\n", + " 'Cons': ['Not bright enough for small highlights to stand out.',\n", + " 'Some stutter in low frame rate content.',\n", + " \"Can't remove judder from all sources.\"]},\n", + " 'HDR Gaming': {'Value': '8.5',\n", + " 'Opinion': \"The LG A1 OLED is an amazing TV for gaming in HDR. It has low input lag for a responsive gaming experience, and a nearly instantaneous response time, so motion looks clear with little blur. It has a nearly infinite contrast ratio and perfect black uniformity, as well as an amazing color gamut, all of which are important for a good HDR experience, but it can't get very bright. Unfortunately, it doesn't have any HDMI 2.1 ports, and it doesn't support variable refresh rate technology, so it can't take full advantage of the latest gaming consoles.\",\n", + " 'Pros': ['Near-infinite contrast ratio.',\n", + " 'Nearly instantaneous response time.',\n", + " 'Very low input lag.',\n", + " 'Wide color gamut.',\n", + " 'Perfect black uniformity.'],\n", + " 'Cons': ['Not bright enough for small highlights to stand out.',\n", + " 'Risk of permanent burn-in with static content.',\n", + " \"Doesn't support variable refresh rates or HDMI 2.1.\"]},\n", + " 'PC Monitor': {'Value': '8.5',\n", + " 'Opinion': \"The LG A1 OLED is an excellent TV for use as a PC monitor, with some limitations. It has outstanding viewing angles, exceptional low input lag, and a nearly instantaneous response time. It's limited to a 60Hz refresh rate, though, and it doesn't support variable refresh rate technology or HDMI 2.1. Unfortunately, there's a chance of burn-in with static content, and the RGBW subpixel structure can cause text clarity issues in some cases.\",\n", + " 'Pros': ['Nearly instantaneous response time.',\n", + " 'Superb viewing angles.',\n", + " 'Very low input lag.',\n", + " 'Displays proper chroma 4:4:4.'],\n", + " 'Cons': ['Risk of permanent burn-in with static content.',\n", + " \"Doesn't support variable refresh rates or HDMI 2.1.\"]}},\n", + " 'Inputs': {'HDMI': '3',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '0',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '0',\n", + " 'SD/SDHC': '0'}},\n", + " {'model': 'x90j',\n", + " 'brand': 'sony',\n", + " 'url': 'http://rtings.com/tv/reviews/sony/x90j',\n", + " 'winner': False,\n", + " 'Overview': {'Mixed Usage': {'Value': '8.1',\n", + " 'Opinion': \"The Sony X90J is a great TV for most uses. It's best suited for watching movies and HDR content due to its high contrast ratio, great full-array local dimming, and high HDR brightness. It has low input lag, a fast response time, and a 120Hz refresh rate, making it a great choice for gaming. However, you'll have to wait for its advertised VRR support. It's good for watching TV shows or sports because it upscales lower resolution content well and gets very bright to combat glare, but its narrow viewing angles make it less ideal for watching with a big group of people.\",\n", + " 'Pros': ['Fantastic contrast.',\n", + " 'Great response time.',\n", + " 'User-friendly smart interface.',\n", + " 'Gets very bright to combat glare.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Poor viewing angles.',\n", + " 'Struggles with direct reflections.',\n", + " \"Doesn't support wide color gamut.\"]},\n", + " 'Movies': {'Value': '8.6',\n", + " 'Opinion': \"The Sony X90J is excellent for watching movies in dark rooms. It's well-suited for dark room viewing thanks to its high contrast ratio and great full-array local dimming that help it display deep blacks. It upscales lower resolution content well like from DVDs and Blu-rays, and it can remove 24p judder from all sources. However, there's a bit of stuttering in movies due to the fast response time.\",\n", + " 'Pros': ['Fantastic contrast.',\n", + " 'Great full-array local dimming.',\n", + " 'Removes judder from all sources.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Stutters a bit in low frame rate content.']},\n", + " 'TV Shows': {'Value': '7.7',\n", + " 'Opinion': \"The Sony X90J is good for watching TV shows in bright rooms. While its reflection handling is only decent, it gets very bright, so visibility in well-lit rooms won't be an issue unless you place the TV opposite a bright window. Its Google TV interface is easy to use, and there are tons of apps available. Its viewing angles are quite narrow, making the image appear washed out when viewed from the side, so it's not the best choice for watching shows with the entire family.\",\n", + " 'Pros': ['User-friendly smart interface.',\n", + " 'Gets very bright to combat glare.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Poor viewing angles.', 'Struggles with direct reflections.']},\n", + " 'Sports': {'Value': '7.5',\n", + " 'Opinion': \"The Sony X90J is good for watching sports. It has a great response time to deliver smooth motion with fast-moving objects and a backlight strobing feature that further improves motion clarity. Its reflection handling is only decent, but it gets very bright to combat glare. Like most VA panel TVs, the viewing angles are pretty narrow, so it's not the best option for watching with a big group of people.\",\n", + " 'Pros': ['Great response time.',\n", + " 'Gets very bright to combat glare.',\n", + " 'Upscales lower resolution content well.'],\n", + " 'Cons': ['Poor viewing angles.', 'Struggles with direct reflections.']},\n", + " 'Video Games': {'Value': '8.4',\n", + " 'Opinion': \"The Sony X90J is great for gaming. It delivers an incredibly fluid and responsive gaming experience due to its low input lag, fast response time, and 120Hz refresh rate. It also has HDMI 2.1 inputs for console or high-frame-rate PC gaming. It has a fantastic contrast ratio and a great full-array local dimming feature, making it well-suited for gaming in the dark. Unfortunately, its advertised VRR support isn't available yet, but it will come in a future firmware update.\",\n", + " 'Pros': ['Fantastic contrast.',\n", + " 'Great full-array local dimming.',\n", + " 'Great response time.',\n", + " 'HDMI 2.1 inputs for 4k @ 120Hz signals, even with chroma 4:4:4.'],\n", + " 'Cons': ['VRR support not available yet.',\n", + " 'Struggles with direct reflections.']},\n", + " 'HDR Movies': {'Value': '8.3',\n", + " 'Opinion': \"The Sony X90J is great for watching movies in HDR. It has a fantastic contrast ratio further enhanced by a great full-array local dimming feature, so it's ideal for dark rooms. It has a good color gamut even though it isn't technically a wide gamut, and it gets very bright in HDR, enough to make highlights pop. Low frame rate content like movies stutters a bit due to its quick response time, but on the bright side, it can remove 24p judder from all sources.\",\n", + " 'Pros': ['Fantastic contrast.',\n", + " 'Great full-array local dimming.',\n", + " 'Removes judder from all sources.',\n", + " 'Good HDR brightness.'],\n", + " 'Cons': ['Stutters a bit in low frame rate content.',\n", + " \"Doesn't support wide color gamut.\"]},\n", + " 'HDR Gaming': {'Value': '8.3',\n", + " 'Opinion': \"The Sony X90J is great for gaming in HDR. It has very low input lag, a 120Hz refresh rate, and a quick response time, so gaming feels smooth and responsive. Sadly, its advertised VRR support isn't available yet, and it can't display 4k @ 120Hz in Dolby Vision. However, it displays deep blacks due to its fantastic contrast ratio and great full-array local dimming, making it well-suited for dark rooms. It has a good color gamut even though it isn't technically a wide gamut, and it gets very bright to make highlights pop.\",\n", + " 'Pros': ['Fantastic contrast.',\n", + " 'Great full-array local dimming.',\n", + " 'Great response time.',\n", + " 'HDMI 2.1 inputs for 4k @ 120Hz signals, even with chroma 4:4:4.',\n", + " 'Good HDR brightness.'],\n", + " 'Cons': ['VRR support not available yet.',\n", + " \"Doesn't support wide color gamut.\",\n", + " \"Can't display 4k @ 120Hz with Dolby Vision.\"]},\n", + " 'PC Monitor': {'Value': '7.8',\n", + " 'Opinion': \"The Sony X90J is good for use as a PC monitor. It has low input lag and a quick response time, and it supports most common resolutions as well as chroma 4:4:4 for better text clarity. There aren't any issues with 4k @ 120Hz signals with chroma 4:4:4 either. Its reflection handling is only decent, but it gets more than bright enough to combat glare. Unfortunately, it has pretty narrow viewing angles, so the image looks inaccurate at the edges if you sit up close.\",\n", + " 'Pros': ['Great response time.',\n", + " 'HDMI 2.1 inputs for 4k @ 120Hz signals, even with chroma 4:4:4.',\n", + " 'Gets very bright to combat glare.'],\n", + " 'Cons': ['Poor viewing angles.', 'Struggles with direct reflections.']}},\n", + " 'Inputs': {'HDMI': '4',\n", + " 'USB': '2',\n", + " 'Digital Optical Audio Out': '1',\n", + " 'Analog Audio Out 3.5mm': '1',\n", + " 'Analog Audio Out RCA': '0',\n", + " 'Component In': '0',\n", + " 'Composite In': '1 (adapter required, not incl.)',\n", + " 'Tuner (Cable/Ant)': '1',\n", + " 'Ethernet': '1',\n", + " 'DisplayPort': '0',\n", + " 'IR In': '1',\n", + " 'SD/SDHC': '0'}}]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tv_details1 " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "interpreter": { + "hash": "a58b191ad2a25b19fea43b3067475f20bdb1c629ecc23182cd320980facf1bfc" + }, + "kernelspec": { + "display_name": "Python 3.9.7 64-bit", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}