2019-03-13 06:29:21 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
resample.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
resample.go is a program for resampling a pcm file.
|
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
Trek Hopton <trek@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
resample.go is Copyright (C) 2018 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
|
|
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
|
|
|
*/
|
2019-03-12 11:23:08 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"bitbucket.org/ausocean/av/audio/pcm"
|
2019-03-13 05:49:53 +03:00
|
|
|
"github.com/yobert/alsa"
|
2019-03-12 11:23:08 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// This program accepts an input pcm file and outputs a resampled pcm file.
|
2019-03-13 05:49:53 +03:00
|
|
|
// Input and output file names, to and from sample rates, channels and sample format can be specified as arguments.
|
2019-03-12 11:23:08 +03:00
|
|
|
func main() {
|
|
|
|
var inPath string
|
|
|
|
var outPath string
|
|
|
|
var from int
|
|
|
|
var to int
|
|
|
|
var channels int
|
2019-03-13 05:49:53 +03:00
|
|
|
var sf string
|
2019-03-12 11:23:08 +03:00
|
|
|
flag.StringVar(&inPath, "in", "data.pcm", "file path of input data")
|
|
|
|
flag.StringVar(&outPath, "out", "resampled.pcm", "file path of output")
|
|
|
|
flag.IntVar(&from, "from", 48000, "sample rate of input file")
|
|
|
|
flag.IntVar(&to, "to", 8000, "sample rate of output file")
|
|
|
|
flag.IntVar(&channels, "ch", 1, "number of channels in input file")
|
2019-03-13 05:49:53 +03:00
|
|
|
flag.StringVar(&sf, "sf", "S16_LE", "sample format of input audio, eg. S16_LE")
|
2019-03-12 11:23:08 +03:00
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
// Read pcm.
|
|
|
|
inPcm, err := ioutil.ReadFile(inPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
fmt.Println("Read", len(inPcm), "bytes from file", inPath)
|
|
|
|
|
2019-03-13 05:49:53 +03:00
|
|
|
var sampleFormat alsa.FormatType
|
|
|
|
switch sf {
|
|
|
|
case "S32_LE":
|
|
|
|
sampleFormat = alsa.S32_LE
|
|
|
|
case "S16_LE":
|
|
|
|
sampleFormat = alsa.S16_LE
|
|
|
|
default:
|
|
|
|
log.Fatalf("Unhandled ALSA format: %v", sf)
|
|
|
|
}
|
|
|
|
|
|
|
|
format := alsa.BufferFormat{
|
|
|
|
Channels: channels,
|
|
|
|
Rate: from,
|
|
|
|
SampleFormat: sampleFormat,
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := alsa.Buffer{
|
|
|
|
Format: format,
|
|
|
|
Data: inPcm,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resample audio.
|
|
|
|
resampled, err := pcm.Resample(buf, to)
|
2019-03-12 11:23:08 +03:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save resampled to file.
|
|
|
|
err = ioutil.WriteFile(outPath, resampled, 0644)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
fmt.Println("Encoded and wrote", len(resampled), "bytes to file", outPath)
|
|
|
|
}
|