FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How to Get Accurate Recording Duration from Unity's Microphone
How-ToTools

How to Get Accurate Recording Duration from Unity's Microphone

via Dev.toShoichi Okaniwa2h ago

Introduction I was building a voice recording feature using a smartphone microphone in Unity. The requirement was simple: tap a button to start recording, tap again to stop. However, I ran into a problem — I couldn't get the accurate recording duration. This article explains how I solved it. Unity's Microphone Class Unity provides a built-in Microphone class for recording audio. Unity Documentation | Microphone On iPhone, Android, and Mac, it uses the built-in microphone. On Windows, Unity will detect any connected microphone automatically (probably). Sample Code (Updated: 2018/10/21) I created a sample Unity project. Feel free to use it. https://github.com/segurvita/UnityMicrophonePractice It supports starting/stopping recording and playback via button controls. Code Walkthrough Here is the full sample code: using UnityEngine ; public class RecordManager : MonoBehaviour { // Public variables public int maxDuration ; // Maximum recording duration (e.g., 20 seconds) public AudioClip aud

Continue reading on Dev.to

Opens in a new tab

Read Full Article
0 views

Related Articles

How Excel is Used in Real-World Data Analysis
How-To

How Excel is Used in Real-World Data Analysis

Dev.to Beginners • 21m ago

IntentCAD v0.8.0 — Thirteen EPICs, One Day
How-To

IntentCAD v0.8.0 — Thirteen EPICs, One Day

Dev.to • 5h ago

A Growing Position Doesn't Always Mean Fresh Buying — Here's How to Tell
How-To

A Growing Position Doesn't Always Mean Fresh Buying — Here's How to Tell

Dev.to Beginners • 6h ago

Tutorials Are Lying to You Here’s What Actually Works ?
How-To

Tutorials Are Lying to You Here’s What Actually Works ?

Medium Programming • 9h ago

Flutter Mistakes That Make Apps Slow ⚡
How-To

Flutter Mistakes That Make Apps Slow ⚡

Medium Programming • 9h ago

Discover More Articles