Adding audio playback speed control, updating volume control UI, fix stream play for small streams

This commit is contained in:
Mark Cooper 2021-08-20 18:29:10 -05:00
parent 4bcb346365
commit be7e2576f1
13 changed files with 192 additions and 211 deletions

View file

@ -85,7 +85,7 @@ export default {
console.log('Search', this.lastSearch, this.search)
this.searchResults = []
this.processing = true
this.isProcessing = true
this.lastSearch = this.search
var results = await this.$axios.$get(`/api/find/search?title=${this.search}`).catch((error) => {
console.error('Failed', error)
@ -96,7 +96,7 @@ export default {
})
console.log('Got results', results)
this.searchResults = results
this.processing = false
this.isProcessing = false
},
init() {
if (!this.audiobook.book || !this.audiobook.book.title) {