VTT sample file
vtt_sample_file_50KB.vtt
50.0 KB
text/vtt
SHA256 verified
File details
Filename
vtt_sample_file_50KB.vttSize50.0 KB (51200 bytes)
MIME type
text/vttExtension
.vttSHA256
2f1c3265f8162427a72aa28ac2a5f5739e73c7af814f7ed76a14e26f95440acfDownload commands
Use in scripts and tests
curl -L -o vtt_sample_file_50KB.vtt \
https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_50KB.vtt/
wget -O vtt_sample_file_50KB.vtt \
https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_50KB.vtt/
import requests
url = "https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_50KB.vtt/"
resp = requests.get(url)
with open("vtt_sample_file_50KB.vtt", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_50KB.vtt/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("vtt_sample_file_50KB.vtt", buf);
# Download and verify SHA256
curl -L -o vtt_sample_file_50KB.vtt https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_50KB.vtt/
echo "2f1c3265f8162427a72aa28ac2a5f5739e73c7af814f7ed76a14e26f95440acf vtt_sample_file_50KB.vtt" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/subtitle/vtt/vtt_sample_file_50KB.vtt/").content
assert hashlib.sha256(data).hexdigest() == "2f1c3265f8162427a72aa28ac2a5f5739e73c7af814f7ed76a14e26f95440acf"
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_500KB.vtt |
500.0 KB | a957f7254d6f453d… |
Download |
Learn more