我需要获取.wav文件的长度。
使用:
sox output.wav -n stat
给出:
Samples read: 449718
Length (seconds): 28.107375
Scaled by: 2147483647.0
Maximum amplitude: 0.999969
Minimum amplitude: -0.999969
Midline amplitude: 0.000000
Mean norm: 0.145530
Mean amplitude: 0.000291
RMS amplitude: 0.249847
Maximum delta: 1.316925
Minimum delta: 0.000000
Mean delta: 0.033336
RMS delta: 0.064767
Rough frequency: 660
Volume adjustment: 1.000
如何使用grep或其他方法仅输出第二列中长度的值,即28.107375?
由于
答案 0 :(得分:43)
有一种更好的方法:
soxi -D out.wav
答案 1 :(得分:34)
stat
效果将其输出发送到stderr
,使用2>&1
重定向到stdout
。使用sed
提取相关位:
sox out.wav -n stat 2>&1 | sed -n 's#^Length (seconds):[^0-9]*\([0-9.]*\)$#\1#p'
答案 2 :(得分:12)
这可以通过使用:
来完成soxi -D input.mp3
输出将是直接以秒为单位的持续时间soxi -d input.mp3
输出将是具有以下格式的持续时间hh:mm:ss.ss 答案 3 :(得分:5)
这对我有用(在Windows中):
sox --i -D out.wav
答案 4 :(得分:4)
我刚刚为'stat'和'stats'效果添加了JSON输出选项。这应该使得获取有关音频文件的信息更容易一些。
https://github.com/kylophone/SoxJSONStatStats
$ sox somefile.wav -n stat -json
答案 5 :(得分:1)
有我的C#解决方案(不幸的是sox --i -D out.wav
在某些情况下会返回错误的结果):
public static double GetAudioDuration(string soxPath, string audioPath)
{
double duration = 0;
var startInfo = new ProcessStartInfo(soxPath,
string.Format("\"{0}\" -n stat", audioPath));
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;
startInfo.RedirectStandardError = true;
startInfo.RedirectStandardOutput = true;
var process = Process.Start(startInfo);
process.WaitForExit();
string str;
using (var outputThread = process.StandardError)
str = outputThread.ReadToEnd();
if (string.IsNullOrEmpty(str))
using (var outputThread = process.StandardOutput)
str = outputThread.ReadToEnd();
try
{
string[] lines = str.Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
string lengthLine = lines.First(line => line.Contains("Length (seconds)"));
duration = double.Parse(lengthLine.Split(':')[1]);
}
catch (Exception ex)
{
}
return duration;
}
答案 6 :(得分:1)
对于红宝石:
string = `sox --i -D file_wav 2>&1`
string.strip.to_f
答案 7 :(得分:0)
在CentOS中
sox out.wav -e stat 2>& 1 | sed -n' s#^长度(秒):[^ 0-9] ([0-9。] )$#\ 1#p'
答案 8 :(得分:0)
sox stat输出到数组和json编码
$stats_raw = array();
exec('sox file.wav -n stat 2>&1', $stats_raw);
$stats = array();
foreach($stats_raw as $stat) {
$word = explode(':', $stat);
$stats[] = array('name' => trim($word[0]), 'value' => trim($word[1]));
}
echo json_encode($stats);