Initializing... drag & drop files here
Supports: 3GP, 3G2
3GP is the mobile container phones recorded to through the 2000s — usually H.263 or MPEG-4 Part 2 video with AMR voice audio, sized for slow cellular networks. AV1 is the royalty-free codec finalised by the Alliance for Open Media in 2018, and it compresses far harder than anything a 3G handset could run. This tutorial covers re-encoding an old .3gp clip to AV1 for archiving or web delivery, explains exactly what the .av1 file you download is (it is a real container with your audio inside, not a raw bitstream), and is direct about what a conversion can and cannot fix.
.3gp or .3g2 files — old Nokia, Sony Ericsson, Motorola, and early Samsung recordings all work, and several can be queued together..av1 is an unusual extension, and most of the internet will tell you it means a raw AV1 bitstream with no container, no audio, and no timing. That is not what we write. Our AV1 output is muxed into a Matroska container — the same structure an .mkv uses — with your clip's audio decoded from AMR or AAC and re-encoded alongside the video, so the file has a proper track layout, timestamps, and sound.
.mkv. Players and editors that dispatch on extension alone will then treat it exactly as what it is. Nothing inside the file changes.| Preset | AV1 CRF we encode at | What it means in practice |
|---|---|---|
| Highest | 18 | Visually lossless for AV1's scale; largest file |
| Very High (Recommended) | 20 | The default — preserves everything a 3GP source actually holds |
| High | 25 | Transparent to the eye on ordinary footage |
| Medium | 33 | Standard web quality |
| Low | 45 | Artifacts visible on inspection |
| Very Low | 50 | Clearly degraded |
| Lowest | 55 | Heavy compression, obvious blocking |
CRF scales are codec-specific and not comparable across codecs: CRF 23 is a sensible default for H.264 but would be near-lossless and enormous for AV1, while AV1's ordinary web-quality range sits around 30-35. That is why the presets exist — they map to the right numbers per codec so you do not have to.
| Property | 3GP source | AV1 output from this page |
|---|---|---|
| Container | ISO base media file format (3GPP TS 26.244) | Matroska, written to a .av1 filename |
| Video codec | H.263, MPEG-4 Part 2, or H.264/AVC | AV1 (encoded with SVT-AV1 by default) |
| Audio codec | AMR-NB, AMR-WB, AAC-LC, or HE-AAC | Re-encoded, Opus by default |
| Licensing | H.263 and H.264 sit in patent pools | Royalty-free by design (Alliance for Open Media) |
| Typical resolution | 176x144, 320x240, 352x288 | Whatever the source was, unless you scale it |
| Browser playback | Not an HTML5 media type | 94.28% of tracked browsers per caniuse — Chrome 70+, Firefox 67+, Edge 121+, Safari 17+ (partial) |
| Hardware decode | Ubiquitous but irrelevant at this size | Recent GPUs and phone SoCs only; software decode otherwise |
.av1 file will not open in my player." Most likely the app dispatches on the file extension and has never seen .av1. Rename it to .mkv, or open it in VLC or mpv, which sniff the container instead.A format conversion cannot repair a truncated or partially written .3gp, cannot strip DRM from operator-delivered content, and cannot improve a low-resolution source. If the original is damaged, open and re-save it in VLC first and convert the result. If the video is incidental and you only want the sound — an old voice memo, a recorded conversation — extract it directly with 3GP to MP3 rather than paying for an AV1 encode you will never watch. And if the destination is a phone, a TV, or someone else's inbox rather than an archive, AV1 is the wrong target: H.264 in MP4 is.
.av1 file a raw bitstream with no audio?No. Most references describe .av1 as a raw AV1 elementary stream, which is why the extension has a reputation for being unplayable, but our encoder writes a Matroska container and keeps the audio track, re-encoded to Opus by default. You get proper timestamps, a video track, and an audio track. If an application still balks at the unfamiliar extension, renaming the file to .mkv resolves it without altering a byte.
No, and it is worth being blunt about it. AV1 is dramatically more efficient than H.263 or MPEG-4 Part 2, so the same footage stores in far fewer bytes — but efficiency preserves detail, it does not manufacture it. Whatever the phone's encoder discarded in 2007 is gone. Keep Video resolution on "Keep original"; upscaling a 176x144 clip to 1080p produces a bigger file showing the same blur at greater magnification.
CRF 20. Our "Very High (Recommended)" preset maps to AV1 CRF 20, which sits in the visually lossless band of AV1's 0-63 scale — deliberately conservative, because a 3GP source has little margin to give away. If you want a smaller file, "Medium" moves to CRF 33, the standard web-quality tier. The full mapping is in the table above.
Because AV1 spends its compute on analysis: large flexible block partitions, many prediction modes, and refined motion search all cost CPU time that H.264 does not spend. The reference libaom encoder is notoriously slow at this; we default to SVT-AV1, Intel's parallel encoder, which is far quicker at comparable quality. Expect an AV1 job to take longer than the equivalent 3GP to MP4 conversion regardless, and trim long clips before encoding.
caniuse puts browser support at 94.28% of tracked users — Chrome 70+, Firefox 67+, and Edge 121+ with full support, Safari 17+ partial. On the desktop, VLC and mpv decode AV1 in software on any reasonably modern machine, and Microsoft publishes an AV1 Video Extension in the Microsoft Store for the built-in Windows player. Hardware decoding is a newer story confined to recent GPUs and phone chipsets; older TVs, set-top boxes, and pre-2020 phones generally cannot decode AV1 at all.
It is decoded and re-encoded, to Opus by default, and stays in sync with the video. AMR-NB is a narrowband speech codec built for cellular voice at roughly 4.75-12.2 kbps, so the recording never contained high-fidelity audio to begin with. The re-encode preserves the intelligibility that is there; it cannot restore frequencies the original voice codec never captured.
.3gp the same as .3g2 and .3gpp?They are one family with small differences. .3gp and .3gpp name the format specified in 3GPP TS 26.244, the 3GPP file format, built on the ISO base media file format. .3g2 is the 3GPP2 variant used on CDMA networks — the same container structure with a slightly different codec list. This page accepts .3gp and .3g2; the 3GPP to AV1 page runs the identical conversion for the longer spelling.
No, and it cannot. AV1 is a different codec from anything a 3GP file contains, so the video is fully decoded and re-encoded, as is the audio. That means one more generation of lossy compression on top of an already lossy source, which is the reason we default to a conservative CRF. Keep the original .3gp as your archive master if the footage is irreplaceable, and treat the AV1 as the distribution copy.