Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--disable-nv12-dxgi-video

What does --disable-nv12-dxgi-video do?

Disables the video decoder from drawing to an NV12 textures instead of ARGB.

Usage

CLILaunch Chrome with --disable-nv12-dxgi-video using CLI

chrome --disable-nv12-dxgi-video

PuppeteerLaunch Chrome with --disable-nv12-dxgi-video using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-nv12-dxgi-video']
});

PlaywrightLaunch Chrome with --disable-nv12-dxgi-video using Playwright

const browser = await chromium.launch({
  args: ['--disable-nv12-dxgi-video']
});

SeleniumLaunch Chrome with --disable-nv12-dxgi-video using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-nv12-dxgi-video')

driver = webdriver.Chrome(options=options)