Best Seller

HiDock P1

Meeting Note-Taker, Record Even with Your Earphones On

Learn more

New

HiDock P1 mini

The Ultimate Call & Meeting Note-Taker for Your Phone

Transcription Should Be Free

HiDock H1E

Meeting Note-Taker on Your Desk

Loved By Professionals Worldwide

Any Bluetooth Earphones, BlueCatch™ Works

We all rely on the Bluetooth earphones for meetings and calls. Now with HiDock P1, you can record everything.

With BlueCatch™️ technology, connect your Bluetooth earphones with just one press, and P1 records two-way audio.

How does it work? P1 connects to the computer with USB-C cable, it takes two-way audio with Earphones via Bluetooth.

Universal Compatibility, Your Trusted Comfort

HiDock P1 lets you record, transcribe and summarize with your earphones, no extra gear needed.

HiDock Takes Notes, You Focus On What Matters

Attention is all yours, while HiDock records, then insights and actions afterwards.

Works For Any Call, From Anywhere

HiDock records your meetings across all platforms—no bots, no interruptions. Face-to-face meetings, work too.

Save Half Day Per Week*

*Estimated based on 1 hour per day for meeting preparing and notes.

Tailored for You

From managers and developers to doctors and lawyers—HiDock records your conversations and generates insights with tailored summary templates.

Your data security is

our top priority

Data protection is essential for every individual and business. At HiDock, we prioritize user privacy and data security above all else. We implement comprehensive measures to ensure your data remains safe and secure.

Learn More

Design A Sense Of Familiarity

Our design philosophy is Geometric Functionalism — geometry is nature, function is humanity. Built upon the pure geometry of circles, squares and lines, with the craftsmanship in aluminum and electronics, blending AI technology to boost your productivity.

Editorial Highlights

The H1 uses the latest AI technology to boost productivity, doing away with the need for scruffy paper notes.
This USB-C dock uses AI to turbocharge meetings. The ability to transcribe audio and generate summaries is a novel addition.
Easily capture audio from any input source and have meetings auto transcribed, with HiNotes doing the heavy lifting so you don't have to.
Serving as an AI-powered speakerphone of sorts, with an associated service for transcribing and summarizing calls, it all feels fresh and new.
It works with ChatGPT to do everything from transcription to summarization all at once. This is a dream-like feature.
Don't fight it. Relax and just let the AI revolution happen — with the HiDock H1 ChatGPT audio dock. 

AI Note Taker for All Professionals

`; placeholder.insertAdjacentHTML('afterend', template); placeholder.remove(); }; const loadMobileVideos = () => { const template = `
`; placeholder.insertAdjacentHTML('afterend', template); placeholder.remove(); }; if (isMobile) { // 移动端处理 // 1.插入视频 loadMobileVideos(); containers = document.querySelectorAll(`#${vasSectionId} .video-banner-wrapper`); // 2.预处理 const container = containers.item(0); container.children.item(0).classList.add('scroll-area'); const videos = container.querySelectorAll('video'); videos.forEach(function (video) { // video.poster = video.poster.replace('_small', ''); }); // 3.绑定点击事件 container.addEventListener('click', (event) => { const parent = event.target.closest('.video-slide'); const video = parent.querySelector('video'); const videoPlayBtn = parent.querySelector('.icon'); const isPlaying = videoPlayBtn && videoPlayBtn.style.opacity == 0 && video.currentTime > 0 && !video.paused; if (isPlaying) { // 暂停视频 videoPlayBtn.style.opacity = 1; video.pause(); } else { videoPlayBtn.style.opacity = 0; video.play(); } }) } else { // PC端处理 // 1.插入视频 loadVideos(); containers = document.querySelectorAll(`#${vasSectionId} .video-banner-wrapper`); // 2.预处理 收集视频url、复制视频 const videoUrls = []; initAutoScrollVideos(); // 3.启动视频预加载任务 /* window.requestIdleCallback(() => { preloadVideo(); }); */ setTimeout(() => { // preloadVideo(); }, 5000); function preloadVideo() { if (videoUrls.length > 0) { const src = videoUrls.shift(); const video = document.createElement('video'); video.src = src; video.preload = 'auto'; window.requestIdleCallback(() => { preloadVideo(); }); } } function initAutoScrollVideos() { containers.forEach((container) => { const videoList = container.querySelector(`.video-banner-slide`); const videoSlides = container.querySelectorAll('.video-slide'); videoSlides.forEach((videoSlide) => { // 收集视频url, 准备预加载视频 const video = videoSlide.querySelector(`source`); videoUrls.push(video.dataset.src); }); // 视频宽度为250,左右间隙为30!修改css记得同步修改!! const totalSize = videoSlides.length; const currentVideosTotalWidth = totalSize * (250 + 30); const needCloneCount = Math.floor(window.innerWidth / currentVideosTotalWidth); console.log('need clone count:', needCloneCount); if (needCloneCount > 0) { for (let i = 0; i < needCloneCount + 1; i++) { videoSlides.forEach((node) => { const cloneNode = node.cloneNode(true); videoList.appendChild(cloneNode); }); } } }); containers.forEach((container) => { const videoList = container.querySelector(`.video-banner-slide`); const videos = container.querySelectorAll('video'); // 全局变量 let ticker; let canAnimateFlag = false; // 当整个列表不可见则停止滚动动画 let isHover = false; // 绑定视频事件 initEvents(); // 监听视口变化 createObserver(tick); function initEvents() { container.addEventListener('mouseover', function (event) { const parent = event.target.closest('.video-slide'); const video = parent.querySelector('video'); restoreSrc(video); event.target.muted = true; video.play(); event.target.addEventListener('mouseout', function (event) { video.pause(); }); }); container.addEventListener('mouseenter', function (event) { isHover = true; }); container.addEventListener('mouseleave', function (event) { isHover = false; tick(); }); } function tick() { if (isHover || !canAnimateFlag) { return; } // console.log('tick...') const change = videoList.classList.contains('left') ? 1.6 : -1.6; videoList.scrollLeft = videoList.scrollLeft + change; ticker = requestAnimationFrame(tick); } function createObserver(cb) { // 列表交叉观察器 const containerObserver = new IntersectionObserver((entries) => { // 观察整个列表是否出现在视口,如果出现则开始移动视频列表 const entry = entries[0]; if (entry.isIntersecting) { canAnimateFlag = true; cb(); } else { canAnimateFlag = false; } }); containerObserver.observe(container); // 视频元素交叉观察器 const observer = new IntersectionObserver((entries) => { entries.forEach((entry) => { // 如果元素不在视口中 if (canAnimateFlag && !entry.isIntersecting) { // 将该元素移到列表末尾 const video = entry.target; videoList.appendChild(video); videoList.scrollLeft = 0; } }); }); videos.forEach(function (video) { // 使用交叉观察器,观察是否移出视口 observer.observe(video.parentElement); // video.poster = video.poster.replace('_small', ''); }); } }); } } function restoreSrc(video) { const source = video.querySelector('source'); if (!source.src) { video.src = source.dataset.src; source.src = source.dataset.src; } } } catch (err) { console.error(err); } });

Shop with Confidence at HiDock

Free Shipping, US Warehouse

Fast Shipping in 2 Business Day

18-Month Warranty

Try for 30 Days Risk Free