Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Checklist
Description
Currently, format selection allows doing things like
(bestvideo+bestaudio/best)[protocol^=http]which is a handy shortcut forbestvideo+bestaudio[protocol^=http]/best[protocol^=http]Unfortunately, this is currently only allowed for formats and not meta field filters.
Below is an example of how this would work:
bestvideo[height>=1080][height<1440][fps>30]([vcodec^=av01]/[vcodec=vp9.2]/[vcodec^=vp9])+bestaudio/bestwould be equivalent to
(bestvideo[vcodec^=av01][height>=1080][height<1440][fps>30]/bestvideo[vcodec=vp9.2][height>=1080][height<1440][fps>30]/bestvideo[vcodec^=vp9][height>=1080][height<1440][fps>30])+bestaudio/best