Skip to main content

5 Best 4k DSLR Camera 2017



5 Best 4K DSLR Cameras Price List and Specification:-

Check out best 4K DSLR camera Amazone price :-

Nikon  D500 Black - http://amzn.to/2fjykEe

Canon EOS 80D - http://amzn.to/2y1QAh3

Nikon  D5 DSLR Camera Dual CF( Black) - http://amzn.to/2jTVSot

Canon EOS 5D Mark IV - http://amzn.to/2jUJhBs


1.       1. Nikon  D500 Black :-

It comes with 20.9 megapixel optical sensor resolution with DX-format CMOS sensor technology, in black color body with AF-S DX 16-80 f/2.8-4E ED VR Lens, . Its ISO 100 - 52,100 and expandable upto ISO 50 – 16,40,000 and shooting speeds up to 10 fps. It has 153 focus points including 99 cross-type sensors and other 15 sensors support f/8. You can record 4k resolution video with it.  It also comes with built-in Wi-Fi, Bluetooth and NFC.

2. Canon EOS 80D :-

Canon EOS 80D Camera comes with Black body with EF-S 18-135mm focal length with apeture f/3.5 to 5.6 Image Stabilization USM Lens Kit with 8GB Memory Card, . Its 24.2 Megapixel (APS-C) CMOS AF sensor technology helps you shoot video full HD 60 fps and full HD HDR with smooth, fast and accurate autofocus. Its maximum shutter speed 30 sec and min aperture 38 f_stop.

3. Nikon  D5 DSLR Camera Dual CF – Black :-

Nikon D5 provides 20.8 megapixel FX-format CMOS sensor and its shooting speed , upto 12 fps.  So you can take a great sports snap short. Its ISO comes with from 100 to 1,02,400 and it expandable to 3,280,000. Its 153 focus points with 99 cross-type give you quick autofocus and get details image quality. It also provides 4K UHD video recording.

4. Sony - Alpha a99 ii DSLR Camera :-

Sony - Alpha a99 ii   is capable for 4K recording with 60i/60p frame rate video. . It comes with 42.4 megapixel resolution with full frame BSI CMOS sensor technology. Its ISO from 100 - 25,600 and it expandable to ISO 50 – 1,02,400 ranges. It’s shooting speed up to 12 fps.  Sony Alpha a99 has 399 focus points with 79 Hybrid Cross type. It also comes with built-in Wi-Fi and NFC.

5. Canon EOS 5D Mark IV :-

This DSLR Camera comes with 24 – 105 mm, aperture f/4L IS II USM Lens with 30.4 megapixel full-frame CMOS sensor technology in build body . It provide ISO 100-32,000 and expandable to 50-1,02,400. Its shooting speeds up to 7 fps with 61 focus points include 41 cross-type . Even it capable to record great 4K video at 30p,24p frame rate. It also comes with built-in Wi-Fi, NFC and GPS connectivity.

Comments

Popular posts from this blog

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

IOT Based Water Level Indicator Project Using Esp32 And Ultrasonic Sensor

  Water Level Indicator Project Using ESP32   Water Level Indicator with Alarm on Tank Full.   IoT Wi-Fi smart water level indicator for tanks with mobile app control . 📟 OLED Display (0.96" I2C SSD1306)   OLED Pin         ESP32 Pin VCC                     3.3V GND                     GND SDA                    GPIO 21 SCL                      GPIO 22     🔔 BUZZER   Buzzer Pin        ESP32 Pin   +           GPIO 26 -            GND         Each LED connects to an ESP32 GPIO pin via a current-limiting resistor.   ...