最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to play a custom sound when web push notification received - Stack Overflow

programmeradmin1浏览0评论

I implemented web push notifications. Notification is ing but I want to play custom notification sound that I added but that sound is not working default system window sound is ing I want to play this sound. I added in code to let me know why this notification sound is not playing recive

self.addEventListener('push', async function (event) {
  const data = event.data.json();
  console.log(data);
  const title = 'Sound Notification';
  const options = {
    sound: '../public/messageNotification.mp3',
  };

  try {
      registration.showNotification(title, options);
  } catch (e) {
    registration.showNotification(title, options);
  }
});

I implemented web push notifications. Notification is ing but I want to play custom notification sound that I added but that sound is not working default system window sound is ing I want to play this sound. I added in code to let me know why this notification sound is not playing recive

self.addEventListener('push', async function (event) {
  const data = event.data.json();
  console.log(data);
  const title = 'Sound Notification';
  const options = {
    sound: '../public/messageNotification.mp3',
  };

  try {
      registration.showNotification(title, options);
  } catch (e) {
    registration.showNotification(title, options);
  }
});
Share Improve this question edited Aug 14, 2022 at 7:33 asked Aug 4, 2022 at 4:04 user12302978user12302978 1
  • we can use hook useRef and play once we received event: myAudio.current.play() – Sonu Sindhu Commented Aug 15, 2022 at 13:18
Add a ment  | 

4 Answers 4

Reset to default 6 +25

I think you can use HTMLAudioElement for his purpose. For example:

let sound: HTMLAudioElement;
sound = new Audio();
sound.src = '../public/messageNotification.mp3';
sound.load();
sound.play();

We need to take a look what registration.showNotification does, but if it is working correctly and the sound is still not playing, it might be because modern browsers block autoplay in some situations.

For example, Chrome has this autoplay policy. Firefox and Safari might have slightly different policies.

In these cases, you might need to find workarounds for each browser, or you can instruct users to always enable autoplay for your site. In Chrome 104, you do this by clicking on the lock icon (next to the URL), select Site settings, then under Sound select Allow

You cannot. Web push notifications are received by browsers. Browsers do not allow custom sounds for notifications.

const song = new Audio("url");
song.play(); // to play the audio
发布评论

评论列表(0)

  1. 暂无评论