Click here to Skip to main content
15,888,121 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to get information of ASF file as bitrate, metadata, language...I have read ASF Specification and know a ASF file has parts : Header Object, Data Object, Index Object. At frist, I think ASF file's binary file and i try to solve by CLASS and FUNCTION in C# as : FileStream, BinaryReader :

String path = @"E:\KhoaLuanTN\Streaming video server\video\encoder_ad.wmv";
            FileStream filer = File.OpenRead(path);
            BinaryReader br = new BinaryReader(filer);         
            byte [] file = br.ReadBytes(100);

Then, I try to convert into String :
<pre lang="midl">textBox1.Text = Encoding.ASCII.GetString ( file );


But it doesn't display as I expect. It displays a nonsensical string: 0&?u?f? ??.
So please show me how to convert information in a ASF file into String.
Posted

1 solution

 
Share this answer
 
Comments
helldevil1912 21-Jul-11 6:06am    
Thank you for helping me.Can you tell me why it doesn't work ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900