WAV音声ファイルを読み書きするためのライブラリ [詳細]
#include "../mist.h"#include "../config/stereo.h"#include <iostream>#include <string>#include <deque>#include <map>#include <algorithm>ネームスペース | |
| namespace | mist |
関数 | |
| template<class T , class Allocator > | |
| bool | mist::read_wav (array< T, Allocator > &sound, const std::string &filename, unsigned int &sampling_rate) |
| WAVファイルから音声データををMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::read_wav (array< T, Allocator > &sound, const std::wstring &filename, unsigned int &sampling_rate) |
| WAVファイルから音声データををMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::read_wav (array< T, Allocator > &sound, const std::string &filename) |
| WAVファイルから音声データををMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::read_wav (array< T, Allocator > &sound, const std::wstring &filename) |
| WAVファイルから音声データををMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::write_wav (const array< T, Allocator > &sound, const std::string &filename, typename array< T, Allocator >::size_type wav_bits, typename array< T, Allocator >::size_type sampling_rate) |
| MISTコンテナのデータをWAVファイルへ出力する | |
| template<class T , class Allocator > | |
| bool | mist::write_wav (const array< T, Allocator > &sound, const std::wstring &filename, typename array< T, Allocator >::size_type wav_bits, typename array< T, Allocator >::size_type sampling_rate) |
| MISTコンテナのデータをWAVファイルへ出力する | |
WAV音声ファイルを読み書きするためのライブラリ
1.8.1.2