Menu
Your Cart

Awei KA8 Bluetooth Dual Stereo Speaker

Awei KA8 Bluetooth Dual Stereo Speaker
-11 %
Awei KA8 Bluetooth Dual Stereo Speaker
  • Price: TK 2,350/-
  • special price: TK 2,100/-
  • Stock: In Stock
  • Model: KA8
TK 2,100/-
TK 2,350/-
Ex Tax: TK 2,100/-

Key Features

    • Model: Awei KA8 Bluetooth Speaker
    • Speaker Type: Dual Speaker Stereo Output
    • Connectivity: Bluetooth Wireless + AUX Input
    • Sound Quality: Clear Audio with Deep Bass
    • Battery: Built-in Rechargeable Battery
    • Usage: Indoor & Outdoor Portable Speaker
Specification
General Feature
BrandAwei
ModelKA8
Signal≥ 80dB
DriversBluetooth 5.3
JackHorn power: 7W * 2
Frequency2,402Hz~2,480MHz
Physical Attributes
Dimensions242 * 92 * 92mm
Warranty Information
Warranty06 Month
Description

Awei KA8 Bluetooth Dual Stereo Speaker – Powerful Sound & Deep Bass | Best Price in BD


Overview & Product Quality

The Awei KA8 Bluetooth Dual Stereo Speaker is a high-performance portable audio solution designed to deliver powerful sound, deep bass, and clear stereo output. Equipped with dual speaker drivers, this speaker produces balanced audio with enhanced bass response, making it perfect for music, movies, gaming, and outdoor entertainment. Its modern design and solid build quality make it suitable for both indoor and outdoor use.

Built with durable materials and advanced sound engineering, the Awei KA8 ensures stable Bluetooth connectivity with smartphones, tablets, laptops, and other Bluetooth-enabled devices. The speaker provides smooth wireless audio streaming without distortion or signal drop, even at higher volume levels. Its compact yet sturdy body allows easy portability while maintaining strong audio output.

The KA8 supports multiple playback options, including Bluetooth wireless mode and auxiliary input, giving users flexibility in how they enjoy their music. With a long-lasting built-in rechargeable battery, it offers extended playtime on a single charge, making it ideal for travel, picnics, parties, and daily use.

Installation & Compatibility

The Awei KA8 Bluetooth Speaker is fully plug-and-play and requires no complicated setup. Simply power on the speaker, enable Bluetooth on your device, and pair it instantly. Once connected, it delivers stable wireless audio performance with clear sound and strong bass output.

Compatible with Android phones, iPhones, tablets, laptops, and other Bluetooth-enabled devices, this speaker is perfect for users looking to upgrade their portable audio experience. Whether used at home, in the office, or outdoors, the Awei KA8 provides reliable performance, immersive sound, and long-term durability.

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