我需要从 FLV 中提取音频数据并将其注入到带有 C# 的 MP3 中。所以我正在为此寻找一个库或如何使用 rawdata/file 结构。
问问题
4212 次
1 回答
3
看看FLVExtract。一个 oss flv 音频流提取器。
编辑:感兴趣的文件在Library
文件夹下。要在您的项目中使用它们,请尝试以下操作:
using (FLVFile flvFile = new FLVFile(fileName))
{
// first param is whether or not to extract audio streams (true)
// second param is whether or not to extract video streams (false)
// third param is whether or not to extract timecodes (false)
// fourth param is the delegate that gets called in case of an overwrite prompt (leave null in case you want to overwrite automatically)
flvFile.ExtractStreams(true, false, false, null);
}
于 2009-10-17T20:27:20.403 回答