 | | Need4more V2EX member #305835, joined on 2018-04-03 22:47:55 +08:00Today's activity rank 12677 |
 | Per Need4more's settings, the topics list is only visible after you sign in |
Deals info, including closed deals, is not hidden
Need4more's recent replies
绩效是资本家对员工的驯服工具,你还会被影响,说明你还没看清职场的本质
请教 op 的 Claude code 账号咋弄的
用过/btw 命令吗?用过 ctrl+g 命令吗?
关注官方 x 账号和 github ,这些是第一手资料
点赞!做的很用心。
发现大部分都能在命令行实现,可以考虑给 ai 提供 cli 接口
# 1. 裁剪音频(从第 10 秒开始,取 30 秒)
ffmpeg -i input.mp3 -ss 00:00:10 -t 30 -c copy output.mp3
# 2. 静音(移除音频)
ffmpeg -i input.mp3 -an output.mp3
# 3. 加速( 2 倍速,不改变音调)
ffmpeg -i input.mp3 -filter:a "atempo=2.0" output.mp3
# 4. 调整音量( 0.5 倍 = 降低一半,2.0 = 翻倍)
ffmpeg -i input.mp3 -filter:a "volume=0.5" output.mp3
# 5. 组合多个操作
ffmpeg -i input.mp3 -ss 10 -t 30 -filter:a "atempo=1.5,volume=0.8" output.mp3