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

    How to Get and Use the ChatGPT API
    • Dev Tips and Tricks

    How to Get and Use the ChatGPT API

    April 25, 2024 by createIT
    eCommerce growth – is your business ready?
    • Services
    • Trends

    eCommerce growth – is your business ready?

    April 8, 2024 by createIT
    Digital marketing without third-party cookies – new rules
    • Technology
    • Trends

    Digital marketing without third-party cookies – new rules

    February 21, 2024 by createIT
    eCommerce healthcheck
    • Services
    • Trends

    eCommerce healthcheck

    January 24, 2024 by createIT
    Live Visitor Count in WooCommerce with SSE
    • Dev Tips and Tricks

    Live Visitor Count in WooCommerce with SSE

    December 12, 2023 by createIT
    Calculate shipping costs programmatically in WooCommerce
    • Dev Tips and Tricks

    Calculate shipping costs programmatically in WooCommerce

    December 11, 2023 by createIT
    Designing a cookie consent modal certified by TCF IAB
    • Dev Tips and Tricks

    Designing a cookie consent modal certified by TCF IAB

    December 7, 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