Menu
Your Cart

A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset

A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset
A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset
  • Price: TK 2,850/-
  • Stock: In Stock
  • Model: Bloody G575
TK 2,850/-
Ex Tax: TK 2,850/-

Key Features

    • Model: Bloody G575
    • 7.1 Virtual Sound, Detachable Mic. Design
    • Braided Tangle-Free Cable
    • Ergonomic 3D Ear Pads
    • 50mm Speaker Unit
    Specification
    General Feature
    BrandA4tech
    ModelBloody G575
    Impedance16 ohm
    Technical Info
    Frequency Range20 Hz - 20 KHz
    Sensitivity105 dB
    Input JackUSB Braided Cable
    Driver DiameterSpeaker Unit: 50mm HD Driver
    ConnectivityWired
    Physical Attributes
    ColorBlack
    Dimensions190mm x 220mm x 93mm
    Warranty Information
    Warranty01 Year
    Description

    A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset in bd 

    The A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset delivers an unparalleled audio experience designed for serious gamers. With its 7.1 surround sound technology, it creates an immersive, dynamic sound environment, allowing you to pinpoint in-game sounds such as footsteps, gunshots, and environmental effects with pinpoint accuracy. This headset ensures you never miss a beat, offering an edge in competitive gaming.

    Equipped with customizable RGB lighting, the A4Tech Bloody G575 enhances your gaming setup with vibrant and visually striking colors, syncing seamlessly with your style and atmosphere. The headset features powerful 50mm drivers, delivering deep bass and crystal-clear highs for a balanced and immersive audio experience.

    Designed for comfort during long gaming sessions, the A4Tech Bloody G575 includes plush, over-ear ear cups and an adjustable headband that fit securely and comfortably. The noise-canceling microphone ensures clear communication, allowing you to stay connected with your teammates without interference. Whether you're playing on your PC, laptop, or console, the headset’s USB connection ensures easy, plug-and-play functionality.

    Buying Suggestions from Dear IT Solution

    For the A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset, rely on Dear IT Solution, your go-to destination for premium gaming accessories in Bangladesh.

    At Dear IT Solution, we offer the A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset at the best price in Bangladesh, ensuring you receive top-quality products at unbeatable value. Our dedication to providing authentic products and excellent customer service makes shopping with us a seamless and satisfying experience.

    Enhance your gaming performance today with the A4Tech Bloody G575 7.1 Surround Sound USB RGB Gaming Headset, available now at Dear IT Solution. Experience immersive sound, comfort, and stunning RGB lighting for an unbeatable gaming experience.

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