Skip to content

Instantly share code, notes, and snippets.

@Forchapeatl
Last active April 25, 2022 20:23
Show Gist options
  • Save Forchapeatl/6ca8c389f0c84bace612db6c5645320e to your computer and use it in GitHub Desktop.
Save Forchapeatl/6ca8c389f0c84bace612db6c5645320e to your computer and use it in GitHub Desktop.
//media resolutions
const resolutionMap = {
"8k": { width:7680, height:4320},
"4k": { width:3840, height: 2160},
"hd": {width: 1920, height: 1080 },
"720p": { width: 1080, height: 720 },
"480p": { width: 854, height: 480 },
"vga": { width: 640, height: 360 },
"qvga": { width: 426, height: 240 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment