SELECT 
  video_id, 
  product_id 
FROM 
  netting_ab__video_gallery 
WHERE 
  product_id IN (
    531, 570, 592, 569, 707, 757, 761, 834
  ) 
  AND status = "A" 
  AND storefront_id IN (1, 0)

Query time 0.00034

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "netting_ab__video_gallery",
          "access_type": "ref",
          "possible_keys": ["status", "product_id"],
          "key": "status",
          "key_length": "3",
          "used_key_parts": ["status"],
          "ref": ["const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "netting_ab__video_gallery.`status` = 'A'",
          "attached_condition": "netting_ab__video_gallery.product_id in (531,570,592,569,707,757,761,834) and netting_ab__video_gallery.storefront_id in (1,0)"
        }
      }
    ]
  }
}