• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: C/C++
  • 标签: wav;C++  

资源简介

使用标准C++库实现实现PCM格式的WAV文件的读写。 class CWaveFile { public: CWaveFile(void); ~CWaveFile(void); // Write wav head bool static WriteHead(const string& filename, uint32_t length); // Write wav file bool static write(const string& filename, const Wave_header &header, void *data, uint32_t length); // Read wav file bool read(const string &filename); private: // Read wav file header bool read_header(const string &filename); private: shared_ptr header; unique_ptr data; };

资源截图

代码片段和文件信息

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2563  2018-08-06 21:20  wav文件读写接口实现.rar

评论

共有 条评论

相关资源