Get a free advice now!

    Pick the topic

    Developer OutsourcingWeb developingApp developingDigital MarketingeCommerce systemseEntertainment systems

    Thank you for your message. It has been sent.

    Tags

    Audio in React – display current time

    Audio in React – display current time

    CHALLENGE: get current audio duration time and display

    SOLUTION: use the onTimeUpdate event

    Having an audio file played, we would like to have the ability to know the current play time. In React, this can be achieved by using the onTimeUpdate event. Knowing currentTime, we need to parse the value and format it using the str_pad_left function. This technique can also be used for streaming audio/video.

    The Ontimeupdate event is triggered when the playing position of the file changes. It’s executed every 200-250ms. The event is invoked by playing or moving playback position.

    OnTimeUpdate Demo

    In our Demo, we’re going to have 2 files embedded and displaying current play time, with live updating. The CurrentStreamTime component uses prop to set current time (updating the parent’s state from the child). We support both audio and video files. We use event.target.currentTime and concatenate minutes and seconds to properly format time.

    Demo with an animated film preview

    The main application file:

    // src/App.jsx
    import React, {useState, useEffect} from 'react';
    import './App.css';
    import {CurrentStreamTime} from "./CurrentStreamTime";
    function App() {
      const[currentTime1, setCurrentTime1] = useState('00:00');
      const[currentTime2, setCurrentTime2] = useState('00:00');
      return (
        <div className="App">
          <div className={'currentTime'}>
            <CurrentStreamTime src={'https://www.w3schools.com/html/mov_bbb.mp4'} type={'video'} setCurrentTime={setCurrentTime1} />
            <p>⏱ {currentTime1}</p>
          </div>
          <div className={'currentTime'}>
            <CurrentStreamTime src={'https://file-examples-com.github.io/uploads/2017/11/file_example_MP3_5MG.mp3'} type={'audio'} setCurrentTime={setCurrentTime2} />
            <p>⏱ {currentTime2}</p>
          </div>
        </div>
      );
    }
    export default App;

    The file with the main component and the onTimeUpdate event handler:

    // src/CurrentStreamTime.jsx
    import React from 'react';
    export const CurrentStreamTime = (props) => {
        const {src, type='audio', setCurrentTime} = props;
        const timeUpdate = (event) => {
            const minutes = Math.floor(event.target.currentTime / 60);
            const seconds = Math.floor(event.target.currentTime - minutes * 60);
            const currentTime = str_pad_left(minutes,'0',2) + ':' + str_pad_left(seconds,'0',2);
            setCurrentTime(currentTime);
        }
        const str_pad_left = (string,pad,length) => {
            return (new Array(length+1).join(pad)+string).slice(-length);
        }
        let htmlTag = '';
        if(type === 'audio') {
            htmlTag = <audio src={src} autoPlay muted controls onTimeUpdate={timeUpdate} />;
        }
        if(type === 'video') {
            htmlTag = <video src={src} autoPlay muted controls loop onTimeUpdate={(event) => {timeUpdate(event)} } />;
        }
        return (
            <>
                {htmlTag}
            </>
        );
    }

    Additional CSS styles:

    body {
      background:#000;
    }
    .App {
      text-align: center;
      max-width:700px;
      margin:15px auto;
      background:#999;
      display:flex;
      justify-content: center;
      align-items: center;
    }
    .currentTime {
      border:10px solid transparent;
    }
    .currentTime p {
      display:inline-block;
      background:#fff;
      padding:7px 14px;
      border-radius:5px;
      font-weight:bold;
      color:#333;
    }
    Animated preview of the player

    Source code

    Here is the published source code: https://github.com/createit-dev/107-audio-in-react-display-current-time
    To run it:
    1) Clone the repo
    2) npm install
    3) npm start

    That’s all for today. Follow us for more useful tips and guidelines.

    Do you need someone to implement this solution for you? Check out our specialists for hire in the outsourcing section. Are you considering a global project and are uncertain how to proceed? See how we do it.

    Comments
    0 response

    Add comment

    Your email address will not be published. Required fields are marked *

    Popular news

    Streamlining Business Growth: Leveraging Discovery for SME Success
    • Services
    • Trends

    Streamlining Business Growth: Leveraging Discovery for SME Success

    September 11, 2023 by createIT
    Benefits of using WordPress
    • Technology
    • Trends

    Benefits of using WordPress

    June 30, 2023 by createIT
    Find out which project flow will suit your idea
    • Services
    • Trends

    Find out which project flow will suit your idea

    June 9, 2023 by createIT
    How to become a Frontend Developer? Essential tips
    • Technology
    • Trends

    How to become a Frontend Developer? Essential tips

    June 6, 2023 by createIT
    Host React App with Netlify
    • Dev Tips and Tricks
    • Technology

    Host React App with Netlify

    May 31, 2023 by createIT

    Support – Tips and Tricks
    All tips in one place, and the database keeps growing. Stay up to date and optimize your work!

    Contact us