tags:

views:

65

answers:

2

Is there a code help to extract head information and target frames from flv file using C#?

A: 

http://stackoverflow.com/questions/2782521/library-for-flv-f4v-conversation-in-c-net

One of those libraries will probably help you.

High
A: 

Maybe this article can help you. It show how to read flv files and it's meta information in c#.

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

You have than to interpret bytes you read according to Adobe flv format specification. Anyway, the article has some code sample showing you how to read all header informations.

Andrea Parodi