Search Media by taxonomy

To search, use the s option as described in the WP_Query documentation

https://codex.wordpress.org/Class_Reference/WP_Query#Search_Parameter

Search Parameter

Show posts based on a keyword search.

s (string) - Search keyword.

Show Posts based on a keyword search

Display posts that match the search term "keyword":

$query = new WP_Query( array( 's' => 'keyword' ) );

Prepending a term with a hyphen will exclude posts matching that term. Eg, 'pillow -sofa' will return posts containing 'pillow' but not 'sofa' (available since Version 4.4).