Extract information from FLV file using C #

Is there any code to extract head information and target frames from an FLV file using C #?

+4
source share
2 answers

Maybe this article can help you. It shows how to read FLV files and meta information in C #.

Basically, you need to open the binary file stream and read the first part of the file.

You have something to interpret the bytes you are reading in accordance with the Adobe flv format specification . Anyway, the article has a code example showing you how to read all the header information.

+5
source

Library for FLV / F4V session in C # .NET?

One of these libraries will probably help you.

+3
source

All Articles