Menu
Your Cart

Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP Camera

Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP Camera
Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP Camera
  • Price: TK 5,600/-
  • Stock: In Stock
  • Model: IPC-HFW2441S-S
TK 5,600/-
Ex Tax: TK 5,600/-

Key Features

    • Model: IPC-HFW2441S-S
    • ROI, SMART H.264 +/H.265+, flexible coding
    • 4-MP 1/2.9" CMOS image sensor
    • Outputs max. 4 MP (2688 × 1520)@20 fps
    • IR distance: 30m (Rotation Mode)
    Specification
    Camera Info
    BrandDahua
    ModelIPC-HFW2441S-S
    Image Sensor1/2.9" CMOS
    Effective Pixels4MP
    IR Distance30 m (98.4 ft)
    Camera Lens
    Lens TypeFixed-focal
    Focal Length2.8 mm 3.6 mm
    Max Aperture Aperture: F1.6
    Angle of View2.8mm: H: 95°; V: 52°; D: 114°; 3.6mm: H: 78°; V: 41°; D: 94°
    Power
    Power ConsumptionMax. (ICR + H.265 + max. resolution + main stream + IR intensity + WDR + IVS): 4.2 W (12 VDC); 5.1 W (PoE)
    Power Supply 12 VDC/PoE (802.3af)
    Physical Attributes
    WeightNet Weight: 0.48 kg (1.06 lb) Gross Weight: 0.59 kg (1.30 lb)
    Warranty Information
    Warranty01 Year
    Description

    Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP Camera in bd 

    The Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP Camera is a robust and high-quality surveillance solution designed to meet the security needs of both residential and commercial environments. Offering a 4MP resolution, this camera delivers sharp and detailed video, ensuring clear monitoring for various applications.

    With its infrared (IR) night vision, the camera provides clear footage even in low-light conditions, with an impressive night vision range of up to 30 meters. This makes it ideal for monitoring at night or in poorly lit areas.

    The camera’s fixed-focal lens allows it to capture a wide field of view, making it suitable for various types of surveillance, whether for entryways, parking lots, or open areas. Its IP67-rated weatherproof housing ensures durability against harsh outdoor conditions, including rain, dust, and extreme temperatures.

    Thanks to Power over Ethernet (PoE) support, installation is simplified as both data and power are delivered via a single cable, reducing clutter and providing a streamlined setup.


    Buying Suggestions from Dear IT Solution

    For the Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP Camera, trust Dear IT Solution, your reliable tech partner in Bangladesh.

    At Dear IT Solution, we offer this high-performance bullet IP camera at the best price in Bangladesh, ensuring authentic products and excellent customer support. Whether you need secure surveillance for your property or business, this camera provides outstanding reliability and clarity.

    Invest in the Dahua IPC-HFW2441S-S 4MP IR Fixed-focal Bullet IP 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};