# vue-waveform **Repository Path**: hasaiki/vue-waveform ## Basic Information - **Project Name**: vue-waveform - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-04-28 - **Last Updated**: 2021-12-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Usage ### install * npm -i vue-waveform * import {waveform} from 'vue-waveform' * Vue.use(waveform) ### Instructions #### scene websocket arraybuffer file mp3 aac blob arraybuffer #### Components ##### vue-waveform ``` ``` ![效果](https://github.com/chenqiaoen521/vue-waveform/blob/master/example.png) ![效果2](https://github.com/chenqiaoen521/vue-waveform/blob/master/ex2.png) ##### props | attr | type | default | description | | ---- | ---- | ---- | ---- | | WIDTH | Number | 500 | The canvas WIDTH | | HEIGHT | Number | 300 | The canvas HEIGHT | | openAudioContext | boolean | true | use audiocontext player flase: use audio player | | websocketURL | String | '' | websocket url example 'ws://192.168.1.1:8082' | | id | String | '' | device id | | type | String | 'bar' | 'bar' : bar graph , 'line' : line graph | | range | Number | 1 | axisY Ratio of Canvas height | | arraybuffer | ArrayBuffer | null | websocket Receive Byte array | | bgColor | string | 'rgb(0, 0, 0)' | canvas background color , rgb or Hex color code | ##### method: | name | return type | parameter | description | | ---- | ---- | ---- | ---- | | openWS | void | | open websocket | | play | void | | play audio | | pause | void | | pause audio | | stop | void | | close websocket and pause audio | example: ``` this.$refs.mycom.openWS() ``` ### Components audioPlayer ##### audioUI: ![效果3](https://github.com/chenqiaoen521/vue-waveform/blob/master/ex3.png) ##### timelineUI: ![效果3](https://github.com/chenqiaoen521/vue-waveform/blob/master/ex4.png) ## USAGE ``` import {waveform} from 'vue-waveform' import 'vue-waveform/dist/static/css/app.css' ``` ##### props | attr | type | default | description | | ---- | ---- | ---- | ---- | | WIDTH | Number | 500 | The canvas WIDTH | | HEIGHT | Number | 300 | The canvas HEIGHT | | playType | Number | 2 | 1: audio html , 2 : timeline | | type | String | 'line2' | only choose line2 | | range | Number | 1 | axisY Ratio of Canvas height | | bgColor | string | 'rgb(0, 0, 0)' | canvas background color , rgb or Hex color code | | URL | string | '' | file audio URL | ##### Methods: | name | return type | parameter | description | | ---- | ---- | ---- | ---- | | stop | void | none | destroy | Example ``` mounted() { this.URL = './static/3.aac' }, methods: { click() { this.$refs.mycom.seekTo(this.timeline) }, ready() { this.$refs.mycom.seekTo(this.timeline) } } ```