480p SD Placeholder Video (854×480)
Generate 854×480 placeholder videos instantly via URL.16:9 aspect ratio, 10-second duration, MP4 H.264.
About 480p SD Resolution
480p (854×480) represents the bridge between standard definition and HD video. This resolution dominated the DVD era and early digital television, establishing 480 vertical lines as the baseline for "acceptable" video quality. The slightly odd width of 854 pixels comes from adapting the 4:3 SD standard (720×480) to 16:9 widescreen while maintaining the 480-line vertical resolution. Today, 480p serves as a middle-tier quality option in streaming services—better than 360p for readability of text and faces, but significantly lighter than HD streams.
Video Preview
Direct URL
Copy this URL to use your 480p SD placeholder video:
https://placeholdervideo.dev/854x480Technical Specifications
- Resolution
- 854 × 480 pixels
- Aspect Ratio
- 16:9
- Category
- landscape
- Duration
- 10 seconds
- Format
- MP4 (H.264, AAC-LC silent audio)
- Frame Rate
- 30 fps
- Approx. MP4 Size
- 187 KB-336 KB
- Generation Time
- about 1-2 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 854×480 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="854"
height="480"
poster="https://placeholdervideo.dev/poster/854x480"
>
<source src="https://placeholdervideo.dev/854x480" 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/854x480'
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: 854, height: 480, duration: 10 })
// Cypress: attach the same fixture URL in an existing player test.
cy.get('video')
.invoke('attr', 'src', 'https://placeholdervideo.dev/854x480')
.then(() => cy.get('video')[0].load())curl / ffprobe
curl -L -o placeholder-854x480.mp4 https://placeholdervideo.dev/854x480
ffprobe -v error \
-select_streams v:0 \
-show_entries stream=codec_name,width,height,pix_fmt \
-show_entries format=duration \
-of json placeholder-854x480.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 854×480
480p placeholders are ideal for testing mid-tier adaptive bitrate streams, mobile web players where bandwidth varies, and legacy system compatibility. Use this resolution when prototyping video features for markets with inconsistent internet infrastructure. It's also the standard for many security camera systems and budget webcams, making it relevant for surveillance software development.
Integration Examples
HTML
<video src="https://placeholdervideo.dev/854x480" width="800" height="450" controls></video>JavaScript Fetch
fetch('https://placeholdervideo.dev/854x480')
.then(res => res.blob())
.then(blob => {
const url = URL.createObjectURL(blob)
document.querySelector('video').src = url
})cURL
curl -O https://placeholdervideo.dev/854x480Technical Considerations
480p video typically encodes at 1-2 Mbps for good quality, producing files around 1.5-2.5 MB for 10 seconds. The resolution supports all H.264 profiles and plays reliably on hardware dating back to 2008. For comparison, 480p requires roughly half the bandwidth of 720p while maintaining reasonable clarity for general content.
Common Questions
- Is 854x480 actually SD or HD?
- 480p is technically Enhanced Definition (ED), sitting between SD (480i) and HD (720p). Marketing often groups it with SD due to sub-720p resolution.
- Why 854 pixels wide instead of 848 or 856?
- 854 produces the closest integer approximation to a 16:9 ratio at 480 lines (853.33 rounds to 854).
Related Guides
Learn more about generating videos programmatically in the API documentation.