Menu
Your Cart

HikVision DS-2CE16H0T-ITPF 5MP Fixed Mini Bullet Camera

HikVision DS-2CE16H0T-ITPF 5MP Fixed Mini Bullet Camera
HikVision DS-2CE16H0T-ITPF 5MP Fixed Mini Bullet Camera
  • Price: TK 1,500/-
  • Stock: In Stock
  • Model: DS-2CE16H0T-ITPF
TK 1,500/-
Ex Tax: TK 1,500/-

Key Features

    • Model: DS-2CE16H0T-ITPF
    • EXIR 2.0: advanced infrared technology
    • 5MP CMOS Image Sensor
    • Water and dust resistant (IP67)
    • 20m IR distance
    Specification
    Camera Info
    BrandHikvision
    ModelDS-2CE16H0T-ITPF
    Image Sensor5 MP CMOS image sensor
    Electronic Shutter SpeedPAL: 1/25 s to 1/50, 000 s,NTSC: 1/30 s to 1/50, 000 s
    Minimum IlluminationColor: 0.01 Lux @ (F1.2, AGC ON), 0 Lux with IR
    Camera Lens
    Mount TypeM12
    Angle of ViewPan: 0° to 360°; Tilt: 0° to 180°; Rotate: 0° to 360°
    Recording
    Resolution2560 (H) × 1944 (V)
    Power
    Power Supply12 VDC±25%
    Physical Attributes
    Dimensions58 mm × 61 mm × 163 mm (2.28" × 2.40" × 6.42")
    WeightApprox. 350 g (0.77 lb.)
    Warranty Information
    Warranty01 Year
    Description

    HikVision DS-2CE16H0T-ITPF 5MP Fixed Mini Bullet Camera in bd 

    The HikVision DS-2CE16H0T-ITPF 5MP Fixed Mini Bullet Camera is a high-performance surveillance device tailored for outdoor and indoor security applications. With its 5MP high-definition resolution, it delivers crisp, clear, and detailed images, making it perfect for capturing critical details in monitored areas.

    This compact bullet camera is equipped with EXIR 2.0 infrared technology, providing superior night vision capabilities of up to 20 meters, ensuring uninterrupted security even in total darkness. Its fixed lens ensures consistent and reliable focus, while the IP67-rated weatherproof housing offers excellent protection against dust and water, making it suitable for challenging environments.

    With support for multiple video formats, including TVI, AHD, CVI, and CVBS, the camera ensures compatibility with a wide range of DVRs. Its advanced motion detection technology minimizes false alarms, providing reliable and accurate surveillance for both residential and commercial spaces.


    Buying Suggestions from Dear IT Solution

    Invest in the HikVision DS-2CE16H0T-ITPF 5MP Fixed Mini Bullet Camera for unmatched security and performance, available at Dear IT Solution.

    At Dear IT Solution, we ensure the best price in Bangladesh for this reliable surveillance solution. Whether you're safeguarding your home or business, this camera offers top-tier features, authentic quality, and trusted customer support.

    Order now from Dear IT Solution and experience enhanced security with a product you can trust!

    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};