VTT sample file
vtt_sample_file_500KB.vtt
500.0 KB
text/vtt
SHA256 verified
File details
Filename
vtt_sample_file_500KB.vttSize500.0 KB (512000 bytes)
MIME type
text/vttExtension
.vttSHA256
a957f7254d6f453d0dad512395e08e8fdb663a3a954ada31c0aa106812c38fe9Download commands
Use in scripts and tests
curl -L -o vtt_sample_file_500KB.vtt \
https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_500KB.vtt/
wget -O vtt_sample_file_500KB.vtt \
https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_500KB.vtt/
import requests
url = "https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_500KB.vtt/"
resp = requests.get(url)
with open("vtt_sample_file_500KB.vtt", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_500KB.vtt/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("vtt_sample_file_500KB.vtt", buf);
# Download and verify SHA256
curl -L -o vtt_sample_file_500KB.vtt https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_500KB.vtt/
echo "a957f7254d6f453d0dad512395e08e8fdb663a3a954ada31c0aa106812c38fe9 vtt_sample_file_500KB.vtt" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_500KB.vtt/").content
assert hashlib.sha256(data).hexdigest() == "a957f7254d6f453d0dad512395e08e8fdb663a3a954ada31c0aa106812c38fe9"
More VTT files
Other VTT Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
vtt_sample_file_1MB.vtt |
1.0 MB | ad0510b5d921c936… |
Download |
vtt_sample_file_200KB.vtt |
200.0 KB | 5478d4a5518ad596… |
Download |
vtt_sample_file_50KB.vtt |
50.0 KB | 2f1c3265f8162427… |
Download |
Learn more