GLTF sample file
gltf_sample_file_500KB.gltf
500.0 KB
model/gltf+json
SHA256 verified
File details
Filename
gltf_sample_file_500KB.gltfSize500.0 KB (512000 bytes)
MIME type
model/gltf+jsonExtension
.gltfSHA256
c44a6f130e0771eec2944a6e715e1b681f773d98c47f0535c4f5db1fd47d35a7Download commands
Use in scripts and tests
curl -L -o gltf_sample_file_500KB.gltf \
https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_500KB.gltf/
wget -O gltf_sample_file_500KB.gltf \
https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_500KB.gltf/
import requests
url = "https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_500KB.gltf/"
resp = requests.get(url)
with open("gltf_sample_file_500KB.gltf", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_500KB.gltf/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("gltf_sample_file_500KB.gltf", buf);
# Download and verify SHA256
curl -L -o gltf_sample_file_500KB.gltf https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_500KB.gltf/
echo "c44a6f130e0771eec2944a6e715e1b681f773d98c47f0535c4f5db1fd47d35a7 gltf_sample_file_500KB.gltf" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/gltf/gltf_sample_file_500KB.gltf/").content
assert hashlib.sha256(data).hexdigest() == "c44a6f130e0771eec2944a6e715e1b681f773d98c47f0535c4f5db1fd47d35a7"
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_50KB.gltf |
50.0 KB | 569acd524ee3700a… |
Download |