У нас вы можете посмотреть бесплатно Cheap $599 Ultra Wide Kogan 40" 5K Frame Rate Test или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is part 2 of this video review: • Cheap 40" 5K 21:9 Ultra Wide Screen M... Home Studio Setup Playlist: • Home Studio Setup Captured with Elgato Cam Link 4K (Can be used in laptops and desktops) https://amzn.to/4hKB7Ei The FPS appear at all times at the top left of the screen. This is Horizon Zero Dawn with maximum settings at 5120 x 2160 on an Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz 3.70 GHz with 32GB RAM and an nvidia GTX 1080Ti with a 10m Optic Fibre DisplayPort cable connected to my PC in the other room while recording in 5K on OBS. The framerate is low as you can see under these conditions, but the game is totally playable and looks immersive and amazing. I filmed the screen using OBS at 24Mbps at 5K but YouTube only accepts 4K so the resolution has decreased for YouTube. The file size for this six minute video is over 10GB. Be sure to read all the comments in both videos. I highly recommend Resolution and Screen Size over frame rate. I use it for Premiere Pro and it's a game changer. 21:9 is a great aspect ratio. I've heard that mega wide monitors are uncomfortable at a desk. 40" is perfect for a desk, and you can still see out the window. I strongly recommend with the money you saved, you get the desk clamp for this monitor and a Secret Labs Magnus Pro with LEDs and magnet pack. This is an awesome monitor. Seriously. By the way, I originally played this game with an Xbox controller and am using the keyboard and mouse for the first time. Even so, the maneuverability in this game is awful. Even Mario could change direction while jumping. This is part 2 of this video review: • Cheap 40" 5K 21:9 Ultra Wide Screen M... Kogan 40" 5K Monitor KAMN40DQUCWA https://www.kogan.com/au/buy/kogan-40... Kogan Heavy Duty Desk Mount https://www.kogan.com/au/buy/kogan-fu... USB3 10m fiber optic cable https://amzn.to/3DhRB7y Display Port 10m fiber optic cable https://amzn.to/49EIoCd Get AutoHotKey from here: https://www.autohotkey.com/ Here is the code for Auto Hot Key, which you should load as a startup app in Windows. My code allows me to press Ctrl1 for Duplicate, Ctrl2 for Extend, Ctrl3 for 1920x1080 on all monitors, Ctrl4 for 5120x2160 on all monitors. Paste the following into a new AutoHotKey file: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ^1:: run, C:\Windows\System32\DisplaySwitch.exe /clone return ^2:: run, C:\Windows\System32\DisplaySwitch.exe /extend return ^3:: ChangeResolution(32,1920,1080,60) return ^4:: ChangeResolution(32,5120,2160,60) return ChangeResolution( cD, sW, sH, rR ) { VarSetCapacity(dM,156,0), NumPut(156,2,&dM,36) DllCall( "EnumDisplaySettingsA", UInt,0, UInt,-1, UInt,&dM ), NumPut(0x5c0000,dM,40) NumPut(cD,dM,104), NumPut(sW,dM,108), NumPut(sH,dM,112), NumPut(rR,dM,120) Return DllCall( "ChangeDisplaySettingsA", UInt,&dM, UInt,0 ) }