[web-src] Add option to stream audio from player web interface

The audio implementation is based on
https://github.com/rainner/soma-fm-player and makes use of the  HTML5
Web Audio Context API.
This commit is contained in:
chme
2019-02-14 12:19:29 +01:00
parent 7a2ba572f8
commit 3b718ffb16
4 changed files with 153 additions and 4 deletions

View File

@@ -24,10 +24,13 @@ module.exports = {
// localhost:3689
proxy: {
'/api': {
target: 'http://localhost:3689',
target: 'http://localhost:3689'
},
'/artwork': {
target: 'http://localhost:3689',
target: 'http://localhost:3689'
},
'/stream.mp3': {
target: 'http://localhost:3689'
}
}
}