Menu
Your Cart

Digipod TR-564 Camera Tripod

Digipod TR-564 Camera Tripod
Digipod TR-564 Camera Tripod
  • Price: TK 1,850/-
  • Stock: In Stock
  • Model: TR-564
TK 1,850/-
Ex Tax: TK 1,850/-

Key Features

    • Model: Digipod TR-564
    • Type: 3D PTZ
    • Storage height: 50cm
    • Load capacity: 3kg
    • Storage height: 50cm
    Description

    Digipod TR-564 Camera Tripod

    The Digipod TR-564 Camera Tripod is a versatile and sturdy tripod designed to meet the needs of photographers and videographers. Whether you’re capturing stunning landscapes, shooting portraits, or filming videos, this tripod ensures stability and precision, enabling you to achieve professional-quality results.

    Constructed from high-quality aluminum alloy, the Digipod TR-564 is both lightweight and durable, making it easy to transport while withstanding regular use. It features three-section adjustable legs with secure flip locks, allowing you to adjust the height effortlessly. The tripod can extend up to a maximum height of 155 cm, offering flexibility for various shooting angles and perspectives.

    Equipped with a 360-degree rotating head, the TR-564 allows for smooth panning and tilting, making it ideal for creating dynamic compositions or following moving subjects. The quick-release plate ensures hassle-free camera mounting and dismounting, saving you valuable time during shoots. The tripod is compatible with DSLRs, mirrorless cameras, action cameras, and smartphones (with an additional mount), making it suitable for a wide range of devices.

    The non-slip rubber feet provide a stable grip on different surfaces, ensuring your equipment remains secure during use. Additionally, the tripod folds down to a compact size, making it perfect for travel and outdoor photography.

    Buying Suggestions from Dear IT Solution

    Purchase the Digipod TR-564 Camera Tripod from Dear IT Solution and enjoy the best price in Bangladesh. We prioritize delivering best quality products insured in Bangladesh, ensuring this tripod is a valuable addition to your gear. Whether you're an amateur enthusiast or a professional, the TR-564 is designed to support your creative endeavors. Order today!

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