Step-by-step instructions
- 1
FFmpeg stream copy (instant, lossless)
Since F4V contains H.264 + AAC (same as MP4), stream copy is sufficient: `ffmpeg -i input.f4v -c copy output.mp4`. This is near-instant. Verify the codecs first: `ffprobe input.f4v`. If it shows h264 video and aac audio, stream copy is safe. If it shows other codecs: `ffmpeg -i input.f4v -c:v libx264 -crf 22 -c:a aac output.mp4`.
Go to converter - 2
Rename the file extension (often works)
Many F4V files are standard MP4 internally. Try simply renaming the file from .f4v to .mp4. If the resulting .mp4 plays correctly in VLC or QuickTime, no conversion is needed. Both formats use the same ISO Base Media File Format (ISOBMFF) container with nearly identical structure.
- 3
VLC (GUI fallback)
VLC reads F4V natively: open VLC → Media → Convert/Save → add F4V → set profile to 'Video - H.264 + MP3 (MP4)'. Click Convert. VLC handles any codec mismatch automatically.
- 4
HandBrake or FormatDrop (for quality re-encoding)
For specific resolution, bitrate, or quality settings: HandBrake opens F4V and re-encodes to H.264 MP4. Set RF to 22 for high quality. FormatDrop handles F4V upload and converts to MP4 server-side for one-off conversions.
Why convert F4V to MP4?
F4V is just MP4 in Flash clothing. Adobe Flash is dead; the content inside these files is valuable and trivial to rescue by changing the container.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Is F4V the same as MP4?
Why did Adobe create F4V instead of using MP4?
Can F4V files have DRM protection?
No account. No upload. Works in any browser.