質問

私はC#とMP3にFLVから、それ注入オーディオデータを抽出する必要があります。私はこのまたはどのように生データ/ファイル構造とそれを実行するためのライブラリのいずれかのために外観をしていてます。

役に立ちましたか?

解決

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);
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top