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.
请提供我可以从 .net 调用并将 mp4 转换为 3gp 和 3gp 转换为 mp4 的良好开源 exe 的链接。
谢谢
最后我得到了答案:使用 ffmpeg 我们可以这样做:
ffmpeg -y -i input.mp4 -r 20 -s 352x288 -b 400k -acodec libfaac -ac 1 -ar 8000 -ab 24k file.3gp
也看看mp4box。
使用 ffmpeg,您通常只做 remux。如,
ffmpeg -i " " -acodec copy -vcodec copy ....