3GP sample file
3gp_sample_file_50KB.3gp
51.5 KB
audio/3gpp
SHA256 verified
File details
Filename
3gp_sample_file_50KB.3gpSize51.5 KB (52759 bytes)
MIME type
audio/3gppExtension
.3gpSHA256
34a7c3e476c3b0ae0a55e84749200a168e3d6749f607b131322d54294ac992ceDownload commands
Use in scripts and tests
curl -L -o 3gp_sample_file_50KB.3gp \
https://samplefile.com/samples/download/video/3gp/3gp_sample_file_50KB.3gp/
wget -O 3gp_sample_file_50KB.3gp \
https://samplefile.com/samples/download/video/3gp/3gp_sample_file_50KB.3gp/
import requests
url = "https://samplefile.com/samples/download/video/3gp/3gp_sample_file_50KB.3gp/"
resp = requests.get(url)
with open("3gp_sample_file_50KB.3gp", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/video/3gp/3gp_sample_file_50KB.3gp/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("3gp_sample_file_50KB.3gp", buf);
# Download and verify SHA256
curl -L -o 3gp_sample_file_50KB.3gp https://samplefile.com/samples/download/video/3gp/3gp_sample_file_50KB.3gp/
echo "34a7c3e476c3b0ae0a55e84749200a168e3d6749f607b131322d54294ac992ce 3gp_sample_file_50KB.3gp" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/video/3gp/3gp_sample_file_50KB.3gp/").content
assert hashlib.sha256(data).hexdigest() == "34a7c3e476c3b0ae0a55e84749200a168e3d6749f607b131322d54294ac992ce"
More 3GP files
Other 3GP Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
3gp_sample_file_1MB.3gp |
979.8 KB | c414fce92f4c8f51… |
Download |
3gp_sample_file_200KB.3gp |
191.3 KB | 71f970536fc2b968… |
Download |
3gp_sample_file_500KB.3gp |
483.8 KB | c5aa4ff0e450053a… |
Download |
Learn more