hello
I Installed this node:
https://www.npmjs.com/package/node-red-contrib-play-sound
on my aplication on my pc (Ubuntu) work perfect,
start, stop, pause and resume commads respond very well...
but an identical application on Raspberry Pi3 stop command does not work
--
http://nodered.org
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+unsubscribe@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/de6d519b-2f3f-4ef2-9d25-dd9f2ac2472b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/l5FJi7_46RA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+unsubscribe@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/CAL%3D0gLvCOA6n%2B56nAbp6wNjMWCCcy-BR1hRWdXWd-grThTvVpw%40mail.gmail.com.
<!DOCTYPE html>
<html>
<body>
<div style="text-align:center">
<button onclick="playPause()">Play/Pause</button>
<br><br>
<audio id="audio1" >
<source src="audio1.mp3" >
</audio>
</div>
<script>
var myAudio = document.getElementById("audio1");
function playPause()
{
if (myAudio.paused)
{
myAudio.currentTime = 0;
myAudio.play();
}
else
{
myAudio.pause();
}
}
</script>
</body>
</html>--
http://nodered.org
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/l5FJi7_46RA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+unsubscribe@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/CACXWFwLH9c1Pb4V0oJ14VoNXPzdaTp8yyvpFou5Z9Q1%2BM4OGFw%40mail.gmail.com.