Last active 1732180526

check_wav_format.py Raw
1import wave
2import sys
3
4# Open the WAV file
5file_path = sys.argv[1]
6with wave.open(file_path, 'rb') as wav_file:
7 # Get audio parameters
8 channels = wav_file.getnchannels() # Number of channels (1=mono, 2=stereo)
9 sample_width = wav_file.getsampwidth() # Sample width in bytes
10 frame_rate = wav_file.getframerate() # Sampling frequency (Hz)
11 num_frames = wav_file.getnframes() # Total number of frames
12
13 # Convert sample width to bits
14 bit_depth = sample_width * 8
15
16 print(f"Channels: {channels}")
17 print(f"Sample Rate: {frame_rate} Hz")
18 print(f"Bit Depth: {bit_depth} bits")
19 print(f"Number of Frames: {num_frames}")
20