当前位置:网站首页>.ts 音频文件转换成 .mp3 文件
.ts 音频文件转换成 .mp3 文件
2022-08-09 09:27:00 【草明】
1. 下载 ffmpeg
点击 ffmpeg 进入下载页面

2. ts 文件转换
ffmpeg -i src_file.ts -f mp3 dest_file.mp3
或者
ffmpeg -i src_file.ts -acodec libmp3lame dest_file.mp3
以上两个转换后, 文件大小较大. 可以通过压缩减小文件大小(以96k为例):
ffmpeg -i s58mp3.mp3 -map 0:a:0 -b:a 96k output2.mp3
批量操作
for f in *.ts ; do ffmpeg -i "$f" -map 0:a:0 -b:a 96k "${f%.*}.mp3"; done
边栏推荐
猜你喜欢

The div simulates the textarea text box, the height of the input text is adaptive, and the word count and limit are implemented

【机器学习】网络爬虫实战详解

本体开发日记02-sparql简单查询

字典

【机器学习】数据科学基础——机器学习基础实践(二)
单元测试是什么?怎么写?主要测试什么?

Sweet alert

TestNG使用教程详解

游戏测试的概念是什么?测试方法和流程有哪些?

使用Protege4和CO-ODE工具构建OWL本体的实用指南-1.3版本(7.4 Annotation Properties-注释属性)
随机推荐
真·鸡汤文
JS-常用方法整理
GBase数据库中,源为 oracle 报出“ORA-01000:超出打开游标最大数”
手机APP测试流程规范和方法你知道多少?
本体开发日记05-努力理解SWRL(下)
关于一次性通过CISSP考试的一点经验分享
问卷问题和答案的合并
黑盒测试常见错误类型说明及解决方法有哪些?
本体开发日记03-排错进行时
A first look at the code to start, Go lang1.18 introductory refining tutorial, from Bai Ding to Hongru, the first time to run the golang program EP01
测试用例的原则、缺陷报告怎么写你都知道吗?
自动化测试简历编写应该注意哪方面?有哪些技巧?
static_assert报错为什么?
Django实现对数据库数据增删改查(二)
Consolidation of Questionnaire Questions and Answers
5.转换流
Teach you how to get a 0.1-meter high-precision satellite map for free
Ontology Development Diary 01-Jena Configuration Environment Variables
软件测试的流程规范有哪些?具体要怎么做?
makefile学习-解决目标文件输出路径问题