Yes, this is the code I have in my template:
$media_items = get_attachments_by_media_tags('media_tags=pictures,episode 1&tags_compare=AND&numberposts=10&return_type=li&search_by=name');
if ($media_items) {
echo "<ul>". $media_items. "</ul>";
};
But instead of displaying images with only both of those tags it’s giving me all photos tagged with ‘pictures’, even those not tagged ‘episode 1’. I had it with the default for search_by before, decided to try ‘name’, but same result.