--audio-process-high-priority
What does --audio-process-high-priority do?
Use high priority for the audio process.
Usage
CLILaunch Chrome with --audio-process-high-priority using CLI
chrome --audio-process-high-priorityPuppeteerLaunch Chrome with --audio-process-high-priority using Puppeteer
const browser = await puppeteer.launch({
args: ['--audio-process-high-priority']
});PlaywrightLaunch Chrome with --audio-process-high-priority using Playwright
const browser = await chromium.launch({
args: ['--audio-process-high-priority']
});SeleniumLaunch Chrome with --audio-process-high-priority using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--audio-process-high-priority')
driver = webdriver.Chrome(options=options)Build Conditions
LOAD_WEBUI_FROM_DISKANDROIDWIN