Values in this filter define a whitelist of the codecs and formats you want to EXCLUDE in the modifed manifest, with the key denoting the content type you are targetting.
By default, the audio, video, and caption keys will accept codecs as their value. but this is not the only way to use them. You can nest other filters to target video, audio, and caption media types.
Mutli value filters are , with no space in between
// Removes AC-3 and Enhanced EC-3 audio from the manifest
$ http http://bakery.dev.vtg.paramount.tech/a(ac-3,ec-3)/star_trek_discovery/S01/E01.m3u8
// Removes HDR10 and Dolby Vision video from the manifest
$ http http://bakery.dev.vtg.paramount.tech/v(hdr10,dvh)/star_trek_discovery/S01/E01.m3u8
Multiple filters:
Multiple filters are supplied by using the / with no space in between
// Removes AVC video and MPEG-4 audio
$ http http://bakery.dev.vtg.paramount.tech/v(avc)/a(mp4a)/star_trek_discovery/S01/E01.m3u8