This is a nice collection of sample EDID, but there does not appear to be a way to download all the samples at once, so I had to scrape.
It would be nice if there was a link to download an archive of all the samples. It would be even nicer if filters could be applied, like only those >128, or only those with CEA extension, or only with DisplayID. Anyway, wishlist.
Scrape in bash, at the time there were 251 EDID on the site:
for i in {2..251}; do
echo "http://edid.tv/edid/$i/download/ ..."
curl "http://edid.tv/edid/$i/download/" -o "edid/edid.tv-$i"
# be nice
sleep 1
done
This is a nice collection of sample EDID, but there does not appear to be a way to download all the samples at once, so I had to scrape.
It would be nice if there was a link to download an archive of all the samples. It would be even nicer if filters could be applied, like only those >128, or only those with CEA extension, or only with DisplayID. Anyway, wishlist.
Scrape in bash, at the time there were 251 EDID on the site: