SRT sample file
srt_sample_file_500KB.srt
500.0 KB
text/plain
SHA256 verified
File details
Filename
srt_sample_file_500KB.srtSize500.0 KB (512000 bytes)
MIME type
text/plainExtension
.srtSHA256
454adfc013082cf95919bf56d9be360d5cafad72c7af8ba1915fe508cb7404d6Download commands
Use in scripts and tests
curl -L -o srt_sample_file_500KB.srt \
https://samplefile.com/samples/download/subtitle/srt/srt_sample_file_500KB.srt/
wget -O srt_sample_file_500KB.srt \
https://samplefile.com/samples/download/subtitle/srt/srt_sample_file_500KB.srt/
import requests
url = "https://samplefile.com/samples/download/subtitle/srt/srt_sample_file_500KB.srt/"
resp = requests.get(url)
with open("srt_sample_file_500KB.srt", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/subtitle/srt/srt_sample_file_500KB.srt/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("srt_sample_file_500KB.srt", buf);
# Download and verify SHA256
curl -L -o srt_sample_file_500KB.srt https://samplefile.com/samples/download/subtitle/srt/srt_sample_file_500KB.srt/
echo "454adfc013082cf95919bf56d9be360d5cafad72c7af8ba1915fe508cb7404d6 srt_sample_file_500KB.srt" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/subtitle/srt/srt_sample_file_500KB.srt/").content
assert hashlib.sha256(data).hexdigest() == "454adfc013082cf95919bf56d9be360d5cafad72c7af8ba1915fe508cb7404d6"
More SRT files
Other SRT Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
srt_sample_file_1MB.srt |
1.0 MB | 91277daee8d6801d… |
Download |
srt_sample_file_200KB.srt |
200.0 KB | 46c04be306337f62… |
Download |
srt_sample_file_50KB.srt |
50.0 KB | a9bf26c8280d09dd… |
Download |
Learn more