MCPcopy Create free account
hub / github.com/adamstark/AudioFile / save

Method save

AudioFile.h:880–884  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

878//=============================================================
879template <class T>
880bool AudioFile<T>::save (const std::string& filePath, AudioFileFormat format)
881{
882 std::vector<uint8_t> fileData;
883 return saveToMemory (fileData, format) && writeDataToFile (fileData, filePath);
884}
885
886//=============================================================
887template <class T>

Callers 4

writeTestAudioFileFunction · 0.80
writeSineWaveToAudioFileFunction · 0.80

Calls

no outgoing calls

Tested by 1

writeTestAudioFileFunction · 0.64