EOS R5 Mirrorless Camera Body Only 4147C002 - Advanced Bundle

$55.44
$3,399.00
-98%
Title:  Default Title
Quantity

Description

For the professional image-maker who needs resolution, speed, and video capabilities, there is the Canon EOS R5. Setting a new standard for versatility, this full-frame mirrorless camera features a newly developed 45MP CMOS sensor, which offers 8K raw video recording, 12 fps continuous shooting with a mechanical shutter, and is the first EOS camera to feature 5-axis sensor-shift image stabilization.Manufacturer Included Items:Canon EOS R5 Mirrorless Digital Camera (Body Only)Canon LP-E6NH Lithium-Ion Battery (7.2V, 2130mAh)Canon LC-E6 Charger for LP-E6 Battery PackCanon R-F-5 Camera CoverBattery Pack CoverStrap ER-EOSR5Canon IFC-100U Interface Cable (39.4")IFC Cable IFC-100U ProtectorBundle Items Include:1 x Canon EOS R5 Mirrorless Digital Camera (Body Only)1 x SanDisk SecureDigital 64GB Extreme PRO Memory Card1 x Camera Bag1 x Corel Photo Software With PhotoMirage, AfterShot, Painter Essentials, PaintShop Pro, and Video Studio2 x LPE6 Battery1 x Rapid Charger For LPE61 x Memory Card Reader1 x Mini Portable LED Video Light 1 x Micro HDMI Cable1 x Deluxe Cleaning Set1 x 12 Inch Flexible Tripod1 x Memory Card Wallet
  • Bundle Includes: 1 x Canon EOS R5 Mirrorless Digital Camera (Body Only), 1 x SanDisk SecureDigital 64GB Extreme PRO Memory Card, 1 x Camera Bag, 1 x Corel Photo Software With PhotoMirage, AfterShot, Painter Essentials, PaintShop Pro, and Video Studio, 2 x LPE6 Battery, 1 x Rapid Charger For LPE6, 1 x Memory Card Reader, 1 x Mini Portable LED Video Light , 1 x Micro HDMI Cable, 1 x Deluxe Cleaning Set, 1 x 12 Inch Flexible Tripod, 1 x Memory Card Wallet
  • For the professional image-maker who needs resolution, speed, and video capabilities, there is the Canon EOS R5. Setting a new standard for versatility, this full-frame mirrorless camera features a newly developed 45MP CMOS sensor, which offers 8K raw video recording, 12 fps continuous shooting with a mechanical shutter, and is the first EOS camera to feature 5-axis sensor-shift image stabilization.
  • Beyond just resolution, the sensor also pairs with the refined DIGIC X image processor to usher in a new generation of Dual Pixel CMOS AF for quick, smooth, and intelligent focusing performance using 1053 selectable points that cover the entire field of view. This focusing system has also been updated to make use of Deep Learning technology for improved subject tracking as well as precise eye, face, and head-detection for both people and animals.
  • An especially high-resolution 0.5" 5.76m-dot electronic viewfinder provides a realistic 120 fps refresh rate while the 3.2" rear touchscreen LCD monitor sports a vari-angle design to accommodate vlogging needs as well as benefit working from high and low angles. A top status LCD makes for an intuitive workflow and the camera also incorporates dual memory card slots one CFexpress Type B, one SD UHS-II along with Bluetooth and Wi-Fi wireless connectivity.
  • Key Features: 45MP Full-Frame CMOS Sensor - DIGIC X Image Processor - 8K30 Raw and 4K120 10-Bit Internal Video - Sensor-Shift 5-Axis Image Stabilization - 12 fps Mech. Shutter, 20 fps E. Shutter - Dual Pixel CMOS AF II with 1053 Points - 0.5" 5.76m-Dot OLED EVF - 3.2" Vari-Angle Touchscreen LCD - Subject Tracking with Deep Learning - CFexpress & SD UHS-II Memory Card Slots
  • AZD241
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.