作者Levi Zhang 联系方式
1. 需要用到的工具和软件
Mac/Windows电脑均可,Mac上安装brew, gcc, git, ffmpeg等。
windows 10 建议启用bash,这样使用命令行方便,上面的工具gcc, git, ffmpeg都可以安装使用
iOS格式aud,用itools等工具导出
安卓格式amr,手机保存路经
Tencent\MicroMsg===================\voice2
用自己喜欢的工具将语音导出来,我个人用的是filezilla ftp,手机设置成ftp服务器,电脑连上慢慢下载。将voice2整个目录下载到本地文件夹voice2
新建文件夹ori和dest,原语音在文件夹ori,转换后语音在dest
2. 将子目录下的所有录音全部拷贝出来
原来的目录层级很多,操作不方便,将所有语音拷贝到一个文件夹里
cd voice2
find . -name "*amr*" -exec cp {} ../ori \;
3. 转码
使用工具 silk-v3-decoder
转换命令:
git clone https://github.com/kn007/silk-v3-decoder
cd silk-v3-decoder
bash converter.sh ori dest mp3
4. 重命名
研究了下语音文件的格式,发现msg_后面的12位数字分别是 秒秒时时分分日日月月年年,接着6位是用户id。
为方便将语音文件按照用户分类,需要将所有文件重命名下,按照用户id-年月日时分秒的顺序排列。
转换前文件名
msg_00 13 39 05 05 16 3e53e0 0a9b4101.mp3
转换后文件名
msg_3e53e0 16 05 05 13 39 00 0a9b4101.mp3
命令测试:
rename -v -n 's/msg_(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\S{6})/msg_$7_20$6$4$5$2$3$1_/' msg_0013390505163e53e00a9b4101.mp3
没问题后,重命名所有文件
rename -v 's/msg_(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\S{6})/msg_$7_20$6$4$5$2$3$1_/' *.mp3
5. 使用ffmpeg工具按照目录合并
5.1 本来打算一步到位,但出现错误
ffmpeg -f concat -i <(for f in *.mp3; do echo "file '$PWD/$f'"; done) -acodec copy `basename "$PWD"`.mp3
ffmpeg -f concat -i <(printf "file '$PWD/%s'\n" *.mp3) -acodec copy `basename "$PWD"`.mp3
现在只能分步进行
5.2 取得列表
for f in *.mp3; do echo "file '$f'" >> mylist.txt; done
或者
printf "file '%s'\n" *.mp3 > mylist.txt
5.3 合并
ffmpeg -f concat -i mylist.txt -acodec copy `basename "$PWD"`.mp3
或者
ffmpeg -f concat -i mylist.txt -acodec copy `echo "${PWD##*/}"`.mp3
5.4 遍历文件夹并执行命令
for dir in `ls .`
do
if [ -d $dir ]
then
echo $dir
cd $dir
printf "file '%s'\n" *.mp3 > mylist.txt
ffmpeg -f concat -i mylist.txt -acodec copy 2016`basename "$PWD"`.mp3
rm -f mylist.txt
mv 2016`basename "$PWD"`.mp3 ..
cd ..
fi
done
完工 EOF
6. 参考
进一步研究微信语音的格式/iOS上微信语音的导出/文中所用到的命令,参考:
- https://www.zhihu.com/question/31286525
- https://zhuanlan.zhihu.com/p/21783890
- http://iosre.com/t/topic/3199
- http://iosre.com/t/topic/3700
- https://github.com/mrojas/ios-pjsip/tree/master/silk-arm-ios
- https://www.zhihu.com/question/19909162
- https://github.com/kn007/silk-v3-decoder
- https://kn007.net/topics/decoding-qq-wechat-silk-v3-encoded-audio-to-mp3-or-other-formats/
- http://askubuntu.com/questions/283145/pattern-based-batch-file-rename-in-terminal
- http://tips.webdesign10.com/how-to-bulk-rename-files-in-linux-in-the-terminal
- https://www.cs.tut.fi/~jkorpela/perl/regexp.html
- https://trac.ffmpeg.org/wiki/Concatenate
- http://unix.stackexchange.com/questions/156084/why-does-process-substitution-result-in-a-file-called-dev-fd-63-which-is-a-pipe
- http://www.cnblogs.com/liuokay/archive/2011/08/15/2139493.html