You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: