Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download all EDID #45

Open
bp0 opened this issue Aug 24, 2019 · 2 comments
Open

Download all EDID #45

bp0 opened this issue Aug 24, 2019 · 2 comments

Comments

@bp0
Copy link

bp0 commented Aug 24, 2019

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
@linuxhw
Copy link

linuxhw commented Feb 19, 2020

Try:

git clone https://github.com/linuxhw/EDID.git

And then:

grep -nR ANYTHING_YOU_NEED ./EDID

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@bp0 @linuxhw and others