Cinemascope Placeholder Video (1920×800)
Generate 1920×800 placeholder videos instantly via URL.2.4:1 aspect ratio, 10-second duration, MP4 H.264.
About Cinemascope Resolution
1920×800 represents the digital equivalent of anamorphic widescreen cinema, delivering a 2.4:1 aspect ratio that has defined Hollywood filmmaking for decades. This ultra-wide format originated with CinemaScope in the 1950s as a response to television's threat to theatrical exhibition—movies offered an immersive width that home screens couldn't match. Modern blockbusters from Christopher Nolan, Denis Villeneuve, and Marvel productions frequently use 2.4:1 framing. The format signals "cinematic" quality and is increasingly adopted by premium streaming content seeking theatrical aesthetics.
Video Preview
Direct URL
Copy this URL to use your Cinemascope placeholder video:
https://placeholdervideo.dev/1920x800Technical Specifications
- Resolution
- 1920 × 800 pixels
- Aspect Ratio
- 2.4:1
- Category
- cinema
- Duration
- 10 seconds
- Format
- MP4 (H.264, AAC-LC silent audio)
- Frame Rate
- 30 fps
- Approx. MP4 Size
- 234 KB-422 KB
- Generation Time
- about 1-3 seconds uncached; repeat requests should hit cache
- Video Codec
- H.264 / AVC, Baseline profile, yuv420p
- Audio Codec
- AAC-LC silent stereo, 48 kHz
Copy-Paste Use Cases
Use this 1920×800 sample MP4 URL as a stable fixture in browser, end-to-end, and media pipeline tests. For broader examples, see the sample MP4 URL guide.
HTML Video
<video
controls
preload="metadata"
width="1920"
height="800"
poster="https://placeholdervideo.dev/poster/1920x800"
>
<source src="https://placeholdervideo.dev/1920x800" type="video/mp4" />
</video>Playwright / Cypress
// Playwright: assert the browser sees real video metadata.
const metadata = await page.locator('video').evaluate((node) => {
const video = node as HTMLVideoElement
video.src = 'https://placeholdervideo.dev/1920x800'
video.load()
return new Promise<{ width: number; height: number; duration: number }>((resolve) => {
video.addEventListener('loadedmetadata', () => {
resolve({
width: video.videoWidth,
height: video.videoHeight,
duration: Math.round(video.duration)
})
}, { once: true })
})
})
expect(metadata).toEqual({ width: 1920, height: 800, duration: 10 })
// Cypress: attach the same fixture URL in an existing player test.
cy.get('video')
.invoke('attr', 'src', 'https://placeholdervideo.dev/1920x800')
.then(() => cy.get('video')[0].load())curl / ffprobe
curl -L -o placeholder-1920x800.mp4 https://placeholdervideo.dev/1920x800
ffprobe -v error \
-select_streams v:0 \
-show_entries stream=codec_name,width,height,pix_fmt \
-show_entries format=duration \
-of json placeholder-1920x800.mp4Response Data
| Content-Type | video/mp4 |
| Cache-Control | public, max-age=86400, immutable |
| Accept-Ranges | bytes |
| Access-Control-Allow-Origin | * |
| X-RateLimit-Limit | 60 standard / 10 heavy per minute |
Browser compatibility: Chrome, Edge, Safari, Firefox, iOS Safari, Android Chrome, HTML5 video players such as video.js and Plyr.
When to Use 1920×800
Use 2.4:1 placeholders when developing video players that must handle cinematic content—streaming apps, home theater software, or film production tools. The extreme width tests letterboxing behavior and aspect ratio preservation that may not surface with 16:9 content. If your platform features film trailers, premium series, or any content shot with anamorphic lenses, 2.4:1 testing is essential.
Integration Examples
HTML
<video src="https://placeholdervideo.dev/1920x800" width="800" height="333" controls></video>JavaScript Fetch
fetch('https://placeholdervideo.dev/1920x800')
.then(res => res.blob())
.then(blob => {
const url = URL.createObjectURL(blob)
document.querySelector('video').src = url
})cURL
curl -O https://placeholdervideo.dev/1920x800Technical Considerations
2.4:1 at 1920 width contains only 1.54M pixels—26% fewer than 16:9 1080p. This allows lower bitrates (3-5 Mbps) for equivalent quality. The unusual aspect ratio can confuse auto-scaling algorithms; test that your player doesn't stretch or crop the image. Hardware decode is fully supported, though the resolution may trigger different scaling paths than standard 16:9.
Common Questions
- Is 2.4:1 the same as 2.35:1 or 2.39:1?
- They're nearly identical. 2.35:1 was the original CinemaScope ratio, 2.39:1 (or "Scope") is the modern SMPTE standard, and 2.4:1 is a common approximation. Differences are imperceptible—all represent "widescreen cinema."
- Why do streaming services show black bars on cinemascope content?
- Most TVs are 16:9 (1.78:1). Displaying 2.4:1 content requires letterboxing to preserve the director's intended framing. Some premium TVs offer masking features to hide the bars.
Related Guides
Learn more about generating videos programmatically in the API documentation.