[ Log On ]
  • Home
  • Tst
  • Cha
  • Enc
  • Code
  • IP
  • Fun
  • Sub
  • DigF
  • Cis
  • Com
  • Db
  • About
  • Netsim

WMA

[Back] This is a page for WMA file analysis (Header).

Try an example

  • File 1. File 1 View
  • File 2. File 2 View
  • File 3. File 3 View
  • File 4. File 4 View

What are we looking for?

For a WMA file, we look for the byte sequence 30 26 B2 75 8E 66 CF 11 A6 D9 00 AA 00 62 CE 6C

Try your own

Or enter your own URL to analyse the first six sectors of the file:

File contents analysis

-- File contents go here. Click on a file from "Try and Example" to view.

Sample code

 public string getTif(System.IO.Stream file)
        {
            string TextBox1 = "";

            byte[] b = ReadFully(file, file.Length);

            TextBox1 = "Starting tag (should be II - Big Indian): " + (char)b[0] + (char)b[1] + "<br/>";
            TextBox1 += "Version: " + Global.intToHex(b[2]) + "<br/>";

            return (TextBox1);
        }