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.

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