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