在 Angular 4 中播放声音

Play sound in Angular 4(在 Angular 4 中播放声音)
本文介绍了在 Angular 4 中播放声音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在使用 Angular 4 开发 Electron 应用程序.我想在某些特定动作上播放声音.是否有任何模块或代码?它可以在角度 4 中,或者如果电子为此提供一些服务,它也应该可以工作

I'm working on an Electron app with Angular 4. I want to play sound on some specific action. Is there any module or code for that? It can be in the angular 4 or if electron is providing some service for that it should also work

因为我想在某些动作上播放它,所以我不能使用 HTML 音频标签和 javascript 的 audio()

As I want to play it on some action I can't use the HTML audio tag and audio() of javascript

我只想播放 2-3 秒的声音,所以不需要其他功能.

I only want to play the sound of 2-3 seconds so no other functionalities are needed.

它可以是电子或 Angular 4,它们中的任何一个都可以工作......

It can be of electron or Angular 4 any of them can work...

推荐答案

刚刚在一个正在工作的项目中做了这个(角度 4)并且它工作了

just did this in a project am working (angular 4) and it worked

playAudio(){
  let audio = new Audio();
  audio.src = "../../../assets/audio/alarm.wav";
  audio.load();
  audio.play();
}
this.playAudio();

确保路径正确并引用现有音频

make sure the path is correct and references an existing audio

这篇关于在 Angular 4 中播放声音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
Upload file to my google drive from anyone using javascript(使用 javascript 将文件从任何人上传到我的谷歌驱动器)
quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)
Angular 2+ HTTP POST and GDrive API. Resumable file upload with name(Angular 2+ HTTP POST 和 GDrive API.带名称的可恢复文件上传)