ASS sample file
ass_sample_file_1MB.ass
1.0 MB
audio/aac
SHA256 verified
File details
Filename
ass_sample_file_1MB.assSize1.0 MB (1048576 bytes)
MIME type
audio/aacExtension
.assSHA256
87b575a39ee1bcfcbfc88350c82dcbc1792fb65b54c9dbcec6d73c8e313ea114Download commands
Use in scripts and tests
curl -L -o ass_sample_file_1MB.ass \
https://samplefile.com/samples/download/subtitle/ass/ass_sample_file_1MB.ass/
wget -O ass_sample_file_1MB.ass \
https://samplefile.com/samples/download/subtitle/ass/ass_sample_file_1MB.ass/
import requests
url = "https://samplefile.com/samples/download/subtitle/ass/ass_sample_file_1MB.ass/"
resp = requests.get(url)
with open("ass_sample_file_1MB.ass", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/subtitle/ass/ass_sample_file_1MB.ass/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("ass_sample_file_1MB.ass", buf);
# Download and verify SHA256
curl -L -o ass_sample_file_1MB.ass https://samplefile.com/samples/download/subtitle/ass/ass_sample_file_1MB.ass/
echo "87b575a39ee1bcfcbfc88350c82dcbc1792fb65b54c9dbcec6d73c8e313ea114 ass_sample_file_1MB.ass" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/subtitle/ass/ass_sample_file_1MB.ass/").content
assert hashlib.sha256(data).hexdigest() == "87b575a39ee1bcfcbfc88350c82dcbc1792fb65b54c9dbcec6d73c8e313ea114"
More ASS files
Other ASS Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
ass_sample_file_200KB.ass |
200.0 KB | 9bfc6abbbe44e924… |
Download |
ass_sample_file_500KB.ass |
500.0 KB | 5a0d1d3fb92c2c63… |
Download |
ass_sample_file_50KB.ass |
50.0 KB | 927d1e85a6f60fca… |
Download |