Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Software that shows bit stream of wave file (Read 3429 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Software that shows bit stream of wave file

I was wondering if there's a software that show the bit stream (in binary or, better, in decimal or hex) of a wave file. Can somebody help me?

Software that shows bit stream of wave file

Reply #1
As it plays, or in a format that you can edit by hand?

Software that shows bit stream of wave file

Reply #2
A hex editor (usually considered a programmer's tool) will show you you the hexadecimal values for the bytes in any file, and it will also show the alphanumeric ASCII conversion, so you'll see the text in the file-header (and you'll see some "garbage characters" for the audio data).  XVI32 is a FREE hex editor.  (You won't be looking at a "stream", you'll be looking at static data in a file.)

Depending on what you're trying to do, it might not be that useful to look at raw hex-bytes....  For example, you might want to see the hex bytes represented as decimal values of signed 16-bit integers.  And, if you're looking at stereo files, the left & right data will be interleaved, etc. 

If you need to learn about the WAV format, take a look at wotsit.org.

 

Software that shows bit stream of wave file

Reply #3
A hex editor (usually considered a programmer's tool) will show you you the hexadecimal values for the bytes in any file, and it will also show the alphanumeric ASCII conversion, so you'll see the text in the file-header (and you'll see some "garbage characters" for the audio data).  XVI32 is a FREE hex editor.  (You won't be looking at a "stream", you'll be looking at static data in a file.)

Depending on what you're trying to do, it might not be that useful to look at raw hex-bytes....  For example, you might want to see the hex bytes represented as decimal values of signed 16-bit integers.  And, if you're looking at stereo files, the left & right data will be interleaved, etc. 

If you need to learn about the WAV format, take a look at wotsit.org.



Thanks for the answer, I'll take a look!