Initializing... drag & drop files here
Supports: VOB
Anyone pulling a moment out of a .vob file is choosing between two animated-image formats, and the trade is straightforward. APNG keeps every one of the 16.7 million colours MPEG-2 encoded and stores each frame losslessly; GIF throws away all but 256 colours per frame but plays inline absolutely everywhere. For DVD footage — which is standard definition, often noisy, often interlaced and always photographic — that means APNG looks noticeably cleaner and lands noticeably larger. Convert to APNG when the clip has gradients, skin tones or fine detail that GIF would band; stay on VOB to GIF when it has to embed in a forum post, a chat window or an email. If the clip is longer than a few seconds, neither is the right answer — VOB to MP4 is.
| Property | APNG | GIF | MP4 (H.264) |
|---|---|---|---|
| Specification | W3C PNG Specification Third Edition, Recommendation 24 June 2025 | CompuServe GIF89a, 1989 | ISO/IEC 14496 (MPEG-4) |
| Colour per frame | 24-bit truecolour | 256-colour palette | 24-bit truecolour, chroma-subsampled |
| Frame compression | Lossless, each frame independent | Lossless on a quantised palette | Lossy, with motion prediction between frames |
| Relative size from a DVD clip | Largest | Middle | Smallest by a wide margin |
| Transparency | Full 8-bit alpha | 1-bit, on or off | None |
| Audio | None | None | Yes |
| Plays inline on a web page | Yes, about 95.9% of browsers per caniuse | Effectively universal | Needs a <video> element |
| Behaviour where unsupported | First frame shows as a normal PNG | Always animates | Nothing plays |
| Realistic clip length | A few seconds | A few seconds | Whole titles |
.vob from the disc's VIDEO_TS folder onto the page, or use the file picker. Note that DVD authoring splits a title across files of at most 1 GB — VTS_01_1.VOB, VTS_01_2.VOB and so on — so the moment you want may live in a later file than you expect.DVD-Video stores non-square pixels. A frame is always 720 pixels wide and 480 (NTSC) or 576 (PAL) tall, and the player stretches it at display time using the aspect flag in the stream. PNG frames are square-pixel with no flag to carry, so whatever is stored is what you see — which is why a native-resolution export of a 16:9 DVD looks horizontally squeezed. Enter these under Width x Height instead:
| DVD flavour | Stored frame | Enter this under Width x Height |
|---|---|---|
| NTSC 4:3 | 720 × 480 | 640 × 480 |
| NTSC 16:9 (anamorphic) | 720 × 480 | 854 × 480 |
| PAL 4:3 | 720 × 576 | 768 × 576 |
| PAL 16:9 (anamorphic) | 720 × 576 | 1024 × 576 |
A height preset such as "480p" will not do this for you — it scales the stored geometry, not the intended display geometry, so a squashed frame stays squashed at a smaller size.
Because DVD-Video is anamorphic: 16:9 material is stored in the same 720-pixel-wide frame as 4:3 material and stretched back out by the player. A measured NTSC VOB reports a 720 × 480 frame with an 8:9 sample aspect ratio for 4:3 content, and 16:9 discs use a wider ratio on the same frame. PNG has no field for that ratio, so the stored pixels are what land in the file. Set Width x Height explicitly using the table above and the proportions come out right.
No. APNG is a picture format with no audio track, and the subpicture subtitle streams and navigation packets that a VOB also carries have nowhere to go either. Only the video frames are converted. If you need sound, or burned-in subtitles, convert the segment with VOB to MP4 instead, which keeps the audio track.
The most likely cause is CSS encryption. Commercially pressed DVD-Video discs are usually scrambled, and a VOB copied straight off such a disc is unreadable to any decoder that does not handle the encryption. Home-authored discs, camcorder DVDs and unencrypted rips convert normally. A file that was truncated during copying — a common outcome of dragging from a scratched disc — will also fail or stop partway.
All of it. There is no trim control on this page, so a full VOB becomes frames from beginning to end, and given that DVD files run to 1 GB apiece the result would be unusable. Cut the seconds you want first with the video cutter, which accepts .vob directly, then bring the short clip here.
Because a great deal of DVD content is interlaced — 480i or 576i — and no deinterlacing filter is applied anywhere in this pipeline. Each decoded frame contains two interleaved fields captured a fraction of a second apart, and on horizontal motion that shows as comb teeth. There is no setting here that removes it; deinterlace the source before uploading if the combing is visible.
There is none to keep. MPEG-2 as used on DVD-Video has no alpha channel, so the output is fully opaque. APNG's 8-bit alpha is preserved when a source actually has it — an alpha-carrying master such as ProRes 4444 comes through with its opacity values intact — but a disc rip is never that source.
Indefinitely. The animation control chunk is written with a play count of zero, which the PNG specification defines as infinite repetition, and there is no loop-count setting on this page. To make a clip play once you would have to rewrite that chunk with a dedicated APNG utility, or move to a video format where repetition is up to the player.
The APNG stage is lossless — once the MPEG-2 frames are decoded, nothing further is discarded, and the final Zopfli optimisation pass rewrites the compressed data without touching a pixel. But it can only preserve what MPEG-2 gave it. DVD video was encoded at roughly 3 to 9 Mbit/s in the late 1990s, so blocking, mosquito noise and colour banding are already baked into the decoded frames. APNG faithfully stores those artefacts at full colour depth instead of adding GIF's palette banding on top of them.