Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的声音文件应该从 3gp 更改为 mp3。
我试图用 ffmpeg 做到这一点:
ffmpeg -i input.3gp -vn -acodec libmp3lame -ab 64k output.mp3
但是新的 mp3 文件只有 0 KB 大。
libmp3lame 可能是问题所在吗?甚至可以在 Java 中做到这一点吗?(因为我只找到了 c++ 示例)