# Collect BMW Car Images from Manufacturer Site

**Use case:** 

Extract all BMW car images and videos from the official site. Get organized media files for your projects in CSV or JSON format.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bmwusa.com"
    }
  ],
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 50,
  "includeImages": true,
  "includeVideo": true,
  "includeAudio": false,
  "includeBackgroundImages": true,
  "dedupeAcrossPages": true,
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "pageUrl": {
    "label": "Page URL",
    "format": "string"
  },
  "mediaUrl": {
    "label": "Media URL",
    "format": "string"
  },
  "mediaType": {
    "label": "Media type",
    "format": "string"
  },
  "fileExtension": {
    "label": "File extension",
    "format": "string"
  },
  "alt": {
    "label": "Alt text",
    "format": "string"
  },
  "width": {
    "label": "Width",
    "format": "integer"
  },
  "height": {
    "label": "Height",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Image Scraper - Download All Images From Site](https://apify.com/logiover/website-image-media-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/website-image-media-extractor) to learn more, explore other use cases, and run it yourself.