--disable-zero-copy-dxgi-video
What does --disable-zero-copy-dxgi-video do?
Disable the video decoder from drawing directly to a texture.
Usage
CLILaunch Chrome with --disable-zero-copy-dxgi-video using CLI
chrome --disable-zero-copy-dxgi-videoPuppeteerLaunch Chrome with --disable-zero-copy-dxgi-video using Puppeteer
const browser = await puppeteer.launch({
args: ['--disable-zero-copy-dxgi-video']
});PlaywrightLaunch Chrome with --disable-zero-copy-dxgi-video using Playwright
const browser = await chromium.launch({
args: ['--disable-zero-copy-dxgi-video']
});SeleniumLaunch Chrome with --disable-zero-copy-dxgi-video using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--disable-zero-copy-dxgi-video')
driver = webdriver.Chrome(options=options)