Chrome Flags Reference

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

--disable-low-latency-dxva

What does --disable-low-latency-dxva do?

Disables using CODECAPI_AVLowLatencyMode when creating DXVA decoders.

Usage

CLILaunch Chrome with --disable-low-latency-dxva using CLI

chrome --disable-low-latency-dxva

PuppeteerLaunch Chrome with --disable-low-latency-dxva using Puppeteer

const browser = await puppeteer.launch({
  args: ['--disable-low-latency-dxva']
});

PlaywrightLaunch Chrome with --disable-low-latency-dxva using Playwright

const browser = await chromium.launch({
  args: ['--disable-low-latency-dxva']
});

SeleniumLaunch Chrome with --disable-low-latency-dxva using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--disable-low-latency-dxva')

driver = webdriver.Chrome(options=options)