Calculating the width and height of Flv and Swf using C #

I can't figure out how to calculate the width and height dimensions of a .flv or .swf file using C # .NET.

+5
source share
1 answer

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 the width and height of files.

+1
source

All Articles