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).

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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