"Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera Price in Pakistan, Specifications, Features"

Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera

The latest Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera price in Pakistan is 39,999 - PKR which was recently updated on November 2025.

Viltrox Camera Accessories (2 more items)

Compatibility: Viltrox EF-EOS M adapter allow Canon EF and EF-S Lenses to be used on Canon EOS-M mirrorless digital camera M2 M3 M5 M6 M10 M50 M100 AF function & Aperture Control: The design has a built-in aperture motor and an electronic contact, which can control the aperture of the lens by means of an electronic contact & The aperture control function almost supports all Canon EOS M cameras, and you can adjust aperture directly from the camera side to control the actual aperture of the lens. EXIF signal transmitting: The design of gold plated PIN has excellent signal transmission performance while it supports EXIF signal transmission. Built-in IS Stabilization: Built-in IS stability, making your focus more precise and clear, which better help you take pictures. Material & Design: Designed with 1/4 screws at the bottom, which can be mounted on the tripod or other retention frame;Zinc-plated alloy technology, with a strong and stable performance.

Price:

39,999 - PKR
Buy Now
Call us: +92 311 163 4275
+92 300 063 4275 Lahore Office
SKU#:22425
Item Condition: New
Stock Info: Available

Features

EF-EOS M Mount Adapter is designed for Canon EF lens to Canon mirrorless camera By adapter mounting it can achieve functions of auto focus and adjustable apertureEFEOS M2 Mount Adapter is designed for EF lens to be used onCanon mirrorless camera, compatible with the drive system ofCanon lens. It can support lens AF function with metal contacts. Covering a wide range of focal lengths, it is suitable for a variety of shooting scenes and achieves professional imaging findings.

Specifications for Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera

Here is the specifications for Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera.
General Specs
 Warranty  
 Price 39,999 - PKR Price in Pakistani Rupees
Disclaimer : Our team entered specs from diffrent resources and not responsible for any typo error in specs, please report any such error in bug report panel for Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera.

Compare

Compare Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera with other models.
Viltrox EF-EOS M Lens Mount Adapter for Canon EF or EF-S-Mount Lens to Canon EF-M Mount Camera Rs. 39999.00
VS

Similar Items...

 
Order via Whatsapp Buy Now
Close
Shopping Cart:

Loading cart...

window.addEventListener('resize', function() { var logDiv = document.getElementById('log'); if (logDiv) { logDiv.insertAdjacentHTML('beforeend', '
Handler for .resize() called.
'); } }); // generate links in specs so var breadcrumbLinks = document.querySelectorAll('.mega-breadcrumb li a'); var catLink = breadcrumbLinks[1] ? breadcrumbLinks[1].getAttribute('href') : ''; var brandLink = breadcrumbLinks[2] ? breadcrumbLinks[2].getAttribute('href') : ''; var linkArray = [catLink, brandLink]; var haElements = document.querySelectorAll('#laptop_detail .ha'); for (var i = 0; i < haElements.length; i++) { var a = haElements[i].innerHTML; //randomly generate link from Category, brand var random = Math.floor(Math.random() * linkArray.length); var url1 = linkArray[random]; var b = '' + a + ''; haElements[i].innerHTML = b; } // making distance from text for tooltips var tooltipElements = document.querySelectorAll('#laptop_detail .ha [data-toggle="tooltip"]'); for (var i = 0; i < tooltipElements.length; i++) { tooltipElements[i].style.marginLeft = '8px'; } // make youtube video resize accordingly - optimized to prevent forced reflow requestAnimationFrame(function() { var video = document.getElementById('item_single_video'); if (video) { var w = video.offsetWidth; console.log(w); var h = (w * 0.5); //console.log(h); //var iframe = video.querySelector('iframe'); //if (iframe) { // iframe.style.height = h + 'px'; // iframe.style.width = '100%'; //} } }); function getVideo(item_id){ // Replace the 'id_value' with the actual ID you want to pass to the request var id_value = item_id; fetch('ajax.php?key=video&id=' + encodeURIComponent(id_value)) .then(function(response) { return response.text(); }) .then(function(response) { //console.log(response); var videoDiv = document.getElementById('video-inject-div'); if (videoDiv) { videoDiv.innerHTML = response; } }) .catch(function(error) { console.error("AJAX request failed:", error); }); } function gerSimilar(){ //----- Get Similar Items via Ajax (SEO OPTIMIZATION) on page scroll (50% Scroll will fetch the data)------// //var fetchSimilerFlag = 0; // $(window).scroll(function() { // if (($(window).scrollTop() >= ($(document).height()/4)) && (fetchSimilerFlag == 0)){ /*console.log('document height = ' + $(document).height()); console.log('windows height = ' + $(window).height()); console.log('windows scroll = ' + $(window).scrollTop());*/ fetchSimilerFlag = 1; var cid = 196; var bid = 353; fetch('ajax.php?key=similar_items&cid=' + cid + '&bid=' + bid) .then(function(response) { return response.text(); }) .then(function(data) { var similarDiv = document.getElementById('similar_item_div'); if (similarDiv) { similarDiv.insertAdjacentHTML('beforeend', data); } }) .catch(function(error) { console.error('Error fetching similar items:', error); }); // } // }); } /* ******************* COMPARISON JS here ********************* ****************************************************************/ // Replaced jQuery with vanilla JS if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initComparison); } else { initComparison(); } function initComparison() { srch_cmprsn(); function srch_cmprsn(query) { var params = new URLSearchParams({ srch_cmprsn_qry: query || '', key: 'compPageSrch', cid: 196 }); fetch("ajax.php", { method: "POST", headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: params.toString() }) .then(function(response) { return response.text(); }) .then(function(data) { var resultDiv = document.getElementById('srch_cmprsn_rslt'); if (resultDiv) { resultDiv.innerHTML = data; if(data != '') { resultDiv.style.display = 'block'; } } }) .catch(function(error) { console.error('Error fetching comparison:', error); }); } var searchInput = document.getElementById('srch_cmprsn_input'); if (searchInput) { searchInput.addEventListener('keyup', function(){ var srch_cmprsn_txt = this.value; if(srch_cmprsn_txt != '') { srch_cmprsn(srch_cmprsn_txt); } else { srch_cmprsn(); } }); } } function srch_cmprsn_prdct(mid,mname,mimg,mprc) { document.getElementById('srch_cmprsn_rslt').innerHTML = ''; document.getElementById('srch_cmprsn_input').value = ''; document.getElementById('comp_slct').innerHTML=""+mid+""+mname+""+mprc+"x"; } function cncl_cmprsn_prdct() { document.getElementById('comp_slct').innerHTML=''; document.getElementById("srch_cmprsn_input").focus(); } document.getElementById("add_cmprsn").onclick = function(){ document.getElementById("srch_cmprsn_input").focus(); }; }