Skip to content

Latest commit

 

History

History
46 lines (41 loc) · 677 Bytes

File metadata and controls

46 lines (41 loc) · 677 Bytes

audioCheckSystem

音频质检系统(Spring Boot+Vue)

使用文档:
readme.docx

开发工具:
1.Spring Boot
2.MyBatis-Plus
3.Sa-Token
4.Vue
5.Element
6.FFmpeg
7.百度语音识别服务接口
8.ANTLR4
9.Elasticsearch
10.Redis

建立Elastic数据库:
PUT /texts

{
  "mappings": {
    "properties": {
      "userId":{
        "type": "long"
      },
      "categoryId":{
        "type": "long"
      },
      "name":{
        "type": "keyword"
      },
      "context":{
        "type": "text",
        "analyzer": "standard"
      },
      "uploadTime":{
        "type": "date"
      }
    }
  }
}