提问人:Kishan 提问时间:11/16/2023 最后编辑:Kishan 更新时间:11/17/2023 访问量:40
将M4A文件转换为MP3,将MOV文件转换为MP3
Conversion of M4A file to MP3, MOV file to MP3
问:
目前,我的解决方案适用于视频格式(mp4,wmv)和音频格式(aac)。我需要将 M4A 和 MOV 文件格式转换为 mp3。我正在使用 FFMPeg 和 FFMPegCore 执行这些操作。
using FFMpegCore.Pipes;
using FFMpegCore;
await FFMpegArguments.FromUrlInput(new Uri(name))
.OutputToPipe(new StreamPipeSink(outputStream), options =>
options.ForceFormat("mp3").WithAudioCodec(FFMpegCore.Enums.AudioCodec.LibMp3Lame)).ProcessAsynchronously();
目前我得到的是没有数据的空文件。
需要有效的 mp3 文件
注意:忘了提,如果转换是本地路径,则适用于所有文件,但不适用于 Url 和流
答: 暂无答案
评论