如何将WAV更改为时间与幅度的txt文件?

时间:2016-12-11 00:18:09

标签: audio wav data-conversion

我想使用LTSpice的文件输入功能来模拟使用真实世界音频的电路。我需要时间与幅度版本的数据,但不确定哪个软件包可以为我做这个。 Audacity可以将MP3转换为WAV,但从我看到的无法将其转换为无头文本文件。

将.WAV文件转换为时间/幅度的双列文本文件。

任何想法都是免费的吗?

1 个答案:

答案 0 :(得分:0)

这是使用javascript进行快速反复的实施。

我将它留作练习,将结果字符串转换为可轻松下载的Blob,我将保留频道选择,立体声结果以及选择一小部分音轨进行处理的功能

<!doctype html>
<html>
<head>
<script>
"use strict";
function byId(id){return document.getElementById(id)}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
window.addEventListener('load', onDocLoaded, false);

var audioCtx;

function onDocLoaded(evt)
{
    audioCtx = new AudioContext();
    byId('fileInput').addEventListener('change', onFileInputChangedGeneric, false);
}

function onFileInputChangedGeneric(evt)
{
    // load file if chosen
    if (this.files.length != 0)
    {
        var fileObj = this.files[0];
        loadAndTabulateAudioFile( fileObj, byId('output') );
    }
    // clear output otherwise
    else
        byId('output').textContent = '';
}

// processes channel 0 only
//
//  creates a string that represents a 2 column table, where each row contains the time and amplitude of a sample
//  columns are tab seperated
function loadAndTabulateAudioFile( fileObj, tgtElement )
{
    var a = new FileReader();
    a.onload = loadedCallback;
    a.readAsArrayBuffer( fileObj );
    function loadedCallback(evt)
    {
        audioCtx.decodeAudioData(evt.target.result, onDataDecoded);
    }
    function onDataDecoded(buffer)
    {
        //console.log(buffer);
        var leftChannel = buffer.getChannelData(0);

        //var rightChannel = buffer.getChannelData(1);
        console.log("# samples: " + buffer.length);
        console.log(buffer);

        var result = '';
        var i, n = buffer.length, invSampleRate = 1.0 / buffer.sampleRate;
        for (i=0; i<n; i++)
        {
            var curResult = (invSampleRate*i).toFixed(8) + "\t" + leftChannel[i] + "\n";
            result += curResult;
        }
        tgtElement.textContent = result;
    }
}

</script>
<style>
</style>
</head>
<body>
    <label>Select audio file: <input type='file' id='fileInput'/></label>
    <hr>
    <pre id='output'></pre>
</body>
</html>