inner-audio-path.uvue 3.3 KB
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
  <page-head :title="title"></page-head>
  <view class="uni-padding-wrap uni-common-mt">
    <view class="uni-title">
      <text class="uni-title-text">音频路径示例</text>
    </view>
    <view class="formats" v-for="(item,index) in supportPaths" :key="index">
      <text class="uni-subtitle-text">{{item.description}}</text>
      <image class="icon-play" :src="(isPlaying && playIndex==index)?'/static/pause.png':'/static/play.png'"
        @click="play(item.src,index)"></image>
    </view>
  </view>
</template>

<script>
  type AudioPath = {
    description : string
    src : string
  }
  export default {
    data() {
      return {
        title: 'audio-path',
        playIndex: 0,
25 26 27
        isPlaying: false,
		nativePath:uni.env.CACHE_PATH+'uni-audio/test/test.mp3' as string,
		sdcardPath :'sdcard/uni-audio/test.mp3',
DCloud-WZF's avatar
DCloud-WZF 已提交
28 29 30 31 32 33
        _audioContext: null as InnerAudioContext | null,
        supportPaths: [
          {
            description: '本地路径:/static方式',
            src: '/static/test-audio/ForElise.mp3'
          },
M
mahaifeng 已提交
34
          {     
DCloud-WZF's avatar
DCloud-WZF 已提交
35 36
            description: '本地路径:../static/',
            src: '../../../static/test-audio/ForElise.mp3'
37 38 39 40 41
          },
		  {
		    description: '本地路径:env方式',
		    src: 'env'
		  },
DCloud-WZF's avatar
DCloud-WZF 已提交
42 43 44 45 46 47 48 49 50 51
          {
            description: '网络路径',
            src: 'https://web-ext-storage.dcloud.net.cn/uni-app-x/audio/ForElise.mp3'
          },
          {
            description: '不存在的音频',
            src: 'https://web-ext-storage.dcloud.net.cn/uni-app-x/audio/invalid_url.mp3'
          },
          {
            description: '错误路径',
M
mahaifeng 已提交
52
            src: '../static/test-audio/ForElise22.mp3'
DCloud-WZF's avatar
DCloud-WZF 已提交
53 54 55 56 57
          },
        ] as Array<AudioPath>
      }
    },
    onReady() {
M
mahaifeng 已提交
58 59 60 61 62 63 64 65 66 67 68
      this._audioContext = uni.createInnerAudioContext();
	  this._audioContext!.onPlay(() => {
	    console.log('开始播放');
	  });
	  this._audioContext!.onEnded(() => {
	    console.log('播放结束');
	    this.isPlaying = false;
	  });
	  this._audioContext!.onError((err) => {
	    this.isPlaying = false;
	     console.log('err', err);
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
	  });
	  
	 const fileManager = uni.getFileSystemManager()
	 try {
		 fileManager.rmdirSync(uni.env.CACHE_PATH+'uni-audio/test',true)
	 } catch (e) {
	 }
	 
	 try {
	 	fileManager.mkdirSync(uni.env.CACHE_PATH+'uni-audio/test',true)
	 } catch (e) {
	 }
	 try{
		 fileManager.copyFileSync(
		 			'/static/test-audio/ForElise.mp3',
		 			this.nativePath)
	 } catch(e){
	 }
    },
	
DCloud-WZF's avatar
DCloud-WZF 已提交
89 90 91 92 93 94 95 96 97 98 99
    onUnload() {
      if (this._audioContext != null) {
        this.pause();
        this._audioContext!.destroy()
      }
    },
    methods: {
      pause() {
        this._audioContext!.pause();
        this.isPlaying = false;
      },
M
mahaifeng 已提交
100
      play(audioUrl:string, index:number) {
M
mahaifeng 已提交
101
        console.log(index,audioUrl);
DCloud-WZF's avatar
DCloud-WZF 已提交
102 103 104
        if (this.isPlaying && this.playIndex == index) {
          this.pause();
          return;
105 106 107 108 109
        }
		if(audioUrl == 'env'){
			audioUrl=this.nativePath
		}
	
DCloud-WZF's avatar
DCloud-WZF 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
        this.playIndex = index
        this._audioContext!.src = audioUrl;
        this._audioContext!.play();
        this.isPlaying = true;
      }
    }
  }
</script>

<style>
  .formats {
    align-items: center;
  }

  .icon-play {
    width: 60px;
    height: 60px;
    margin: 10px;
  }
129
</style>