You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Resolutions.js 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. const Resolutions = {
  2. '1080': {
  3. width: 1920,
  4. height: 1080,
  5. order: 8
  6. },
  7. 'fullhd': {
  8. width: 1920,
  9. height: 1080,
  10. order: 8
  11. },
  12. '720': {
  13. width: 1280,
  14. height: 720,
  15. order: 7
  16. },
  17. 'hd': {
  18. width: 1280,
  19. height: 720,
  20. order: 7
  21. },
  22. '960': {
  23. width: 960,
  24. height: 720,
  25. order: 6
  26. },
  27. '540': {
  28. width: 960,
  29. height: 540,
  30. order: 5
  31. },
  32. 'qhd': {
  33. width: 960,
  34. height: 540,
  35. order: 5
  36. },
  37. // 16:9 resolution first.
  38. '360': {
  39. width: 640,
  40. height: 360,
  41. order: 4
  42. },
  43. '640': {
  44. width: 640,
  45. height: 480,
  46. order: 3
  47. },
  48. 'vga': {
  49. width: 640,
  50. height: 480,
  51. order: 3
  52. },
  53. // 16:9 resolution first.
  54. '180': {
  55. width: 320,
  56. height: 180,
  57. order: 2
  58. },
  59. '320': {
  60. width: 320,
  61. height: 240,
  62. order: 1
  63. }
  64. };
  65. module.exports = Resolutions;