Menu
Your Cart

Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera

Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera
Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera
  • Price: TK 2,150/-
  • Stock: In Stock
  • Model: DS-2CE70DF0T-MFS
TK 2,150/-
Ex Tax: TK 2,150/-

Key Features

    • Model: DS-2CE70DF0T-MFS
    • 2 MP, 1920 × 1080 resolution
    • 24/7 color imaging with F1.0 aperture
    • Lens Type: 2.8 Mm, 3.6 Mm Fixed Focal Lens
    • Up to 20 m white light distance for bright night imaging
    Specification
    Camera Info
    BrandHikvision
    ModelDS-2CE70DF0T-MFS
    Image Sensor2 MP CMOS
    Effective Pixels1920 (H) × 1080 (V)
    Minimum Illumination0.001 Lux @ (F1.0, AGC ON), 0 Lux with white light
    IR Distance20 m
    Camera Lens
    Lens Type2.8 mm, 3.6 mm fixed focal lens
    Focal Length2.8 mm, horizontal FOV: 105°, vertical FOV: 55°, diagonal FOV: 125° 3.6 mm, horizontal FOV: 84°, vertical FOV: 45°, diagonal FOV: 99°
    Mount TypeM12
    Max ApertureF1.0 aperture
    Angle of ViewPan: 0° to 360°, Tilt: 0° to 75°, Rotation: 0° to 360°
    Recording
    Resolution1920 × 1080
    Power
    Power Supply12 VDC ± 25%, max. 2 W
    Physical Attributes
    DimensionsØ85.11 mm × 77.62 mm (3.35" × 3.05")
    WeightApprox. 310 g (0.68 lb.)
    Warranty Information
    Warranty01 Year
    Description

    Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera in bd 

    The Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera is a cutting-edge surveillance solution that brings vibrant color details to your video footage. Equipped with 2MP resolution, this camera provides sharp and clear images, making it ideal for monitoring areas with critical visibility needs.

    With ColorVu technology, this camera delivers full-color video even in low-light conditions, offering superior image quality at all hours of the day or night. The built-in audio recording feature captures sound alongside video, adding extra layers of security by monitoring both visual and auditory events.

    Its turret design allows for easy installation and ensures a wide viewing angle. The camera is weather-resistant, making it suitable for both indoor and outdoor use, offering reliable performance in various environmental conditions.


    Buying Suggestions from Dear IT Solution

    For the Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera, trust Dear IT Solution, your reliable tech partner in Bangladesh.

    At Dear IT Solution, we offer this advanced camera at the best price in Bangladesh, ensuring genuine products and top-notch customer support. Whether you need to enhance your home security system or set up an extensive commercial surveillance setup, this camera provides unmatched value and high performance.

    Invest in the Hikvision DS-2CE70DF0T-MFS 2MP ColorVu Audio Fixed Turret Camera today. Order now from Dear IT Solution for unbeatable value and quality!

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};