SELECT 
  video_id, 
  product_id 
FROM 
  tmall_ab__video_gallery 
WHERE 
  product_id IN (
    12, 78, 79, 11, 41, 81, 107, 109, 91, 92, 
    34, 15, 31, 38, 80, 102, 28, 280, 282, 
    278
  ) 
  AND status = 'A' 
  AND storefront_id IN (1, 0)

Query time 0.00787

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.00345856,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_ab__video_gallery",
          "access_type": "ref",
          "possible_keys": ["status", "product_id"],
          "key": "status",
          "key_length": "3",
          "used_key_parts": ["status"],
          "ref": ["const"],
          "loops": 1,
          "rows": 1,
          "cost": 0.00345856,
          "filtered": 100,
          "index_condition": "tmall_ab__video_gallery.`status` = 'A'",
          "attached_condition": "tmall_ab__video_gallery.product_id in (12,78,79,11,41,81,107,109,91,92,34,15,31,38,80,102,28,280,282,278) and tmall_ab__video_gallery.storefront_id in (1,0)"
        }
      }
    ]
  }
}