Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extract information from flv file using C# [closed]

Tags:

c#

.net

flv

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

like image 792
Eyla Avatar asked Sep 22 '10 17:09

Eyla


1 Answers

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 information.

like image 142
Andrea Parodi Avatar answered Nov 08 '22 06:11

Andrea Parodi