BookmarkSubscribeRSS Feed
Garnett
Obsidian | Level 7
Greetings!
I have a Windows .wav file representing an acoustical signal that I would like to analyze in SAS. How would I go about opening the .wav file?
Many thanks!
Garnett
3 REPLIES 3
art297
Opal | Level 21
Garnett,

Fascinating question .. never thought about it and totally out of my area.

That said, I came across an interesting thread elsewhere that might provide some direction. You can find it at:
http://boards.straightdope.com/sdmb/showthread.php?t=577361

HTH,
Art
Garnett
Obsidian | Level 7
Hi Art,
Thanks for your interest. I read somewhere that .wav are binary file formats, so that I run

data test;
infile "c:\...\sample_sfoae.wav" lrecl = 2000;
input _x pib5. ;
run;

proc print output:

_x
121438095698
834918219026

I wonder what that means?
Lex_SAS
SAS Employee
You would need a detailed description of the file format to make sense of the data.
Maybe this helps:

http://www.sonicspot.com/guide/wavefiles.html

(I just Googled 'wav file format' to find this).

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1571 views
  • 0 likes
  • 3 in conversation