GLTF sample file
gltf_sample_file_50KB.gltf
50.0 KB
model/gltf+json
SHA256 verified
File details
Filename
gltf_sample_file_50KB.gltfSize50.0 KB (51200 bytes)
MIME type
model/gltf+jsonExtension
.gltfSHA256
569acd524ee3700a4676cdcee9405364e38631cc9587d2b8a5d28014afc2a952Download commands
Use in scripts and tests
curl -L -o gltf_sample_file_50KB.gltf \
https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_50KB.gltf/
wget -O gltf_sample_file_50KB.gltf \
https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_50KB.gltf/
import requests
url = "https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_50KB.gltf/"
resp = requests.get(url)
with open("gltf_sample_file_50KB.gltf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_50KB.gltf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("gltf_sample_file_50KB.gltf", buf);
# Download and verify SHA256
curl -L -o gltf_sample_file_50KB.gltf https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_50KB.gltf/
echo "569acd524ee3700a4676cdcee9405364e38631cc9587d2b8a5d28014afc2a952 gltf_sample_file_50KB.gltf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_50KB.gltf/").content
assert hashlib.sha256(data).hexdigest() == "569acd524ee3700a4676cdcee9405364e38631cc9587d2b8a5d28014afc2a952"
More GLTF files
Other GLTF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
gltf_sample_file_1MB.gltf |
1.0 MB | 1371a1c3d681af35… |
Download |
gltf_sample_file_200KB.gltf |
200.0 KB | d3f4837ae3cebc77… |
Download |
gltf_sample_file_500KB.gltf |
500.0 KB | c44a6f130e0771ee… |
Download |