Microsoft MVP성태의 닷넷 이야기
닷넷: 2238. C# - WAV 기본 파일 포맷 [링크 복사], [링크+제목 복사],
조회: 2358
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

(시리즈 글이 9개 있습니다.)
.NET Framework: 618. C# - NAudio를 이용한 MP3 파일 재생
; https://www.sysnet.pe.kr/2/0/11092

닷넷: 2236. C# - Audio 장치 열람 (Windows Multimedia, NAudio)
; https://www.sysnet.pe.kr/2/0/13594

닷넷: 2237. C# - Audio 장치 열기 (Windows Multimedia, NAudio)
; https://www.sysnet.pe.kr/2/0/13595

닷넷: 2238. C# - WAV 기본 파일 포맷
; https://www.sysnet.pe.kr/2/0/13596

닷넷: 2239. C# - WAV 파일의 PCM 데이터 생성 및 출력
; https://www.sysnet.pe.kr/2/0/13597

닷넷: 2240. C# - WAV 파일 포맷 + LIST 헤더
; https://www.sysnet.pe.kr/2/0/13598

닷넷: 2241. C# - WAV 파일의 PCM 사운드 재생(Windows Multimedia)
; https://www.sysnet.pe.kr/2/0/13599

닷넷: 2243. C# - PCM 사운드 재생(NAudio)
; https://www.sysnet.pe.kr/2/0/13601

닷넷: 2244. C# - PCM 오디오 데이터를 연속(Streaming) 재생 (Windows Multimedia)
; https://www.sysnet.pe.kr/2/0/13602




C# - WAV 기본 파일 포맷

wav 파일은 그 포맷이 무척 간단합니다. (사실, 간단하게 다룰 수 있는 경우가 대다수일 뿐입니다. ^^;)

What is a WAV file? 
; https://docs.fileformat.com/audio/wav/

4.웨이브 파일의 구조
; http://www.soen.kr/lecture/library/waveform/4.htm

위의 문서에 따라 WAVE 헤더 파일을 분석하는 코드를 대충 다음과 같이 작성할 수 있고,

using System.Runtime.InteropServices;
using System.Text;

namespace Wave;

public class WaveFile
{
    string _filePath = "";
    WaveHeader _header;
    public WaveHeader Header => _header;

    private WaveFile() { }

    public WaveFile(string path)
    {
        _filePath = path;
        _header = GetHeader();
    }

    public WaveHeader GetHeader()
    {
        byte[] buffer = new byte[Marshal.SizeOf<WaveHeader>()];
        using (FileStream fs = File.OpenRead(_filePath))
        {
            fs.Read(buffer);
        }

        return structFromBytes(buffer);
    }

    private WaveHeader structFromBytes(byte[] buffer)
    {
        GCHandle pData = GCHandle.Alloc(buffer, GCHandleType.Pinned);
        WaveHeader instance = Marshal.PtrToStructure<WaveHeader>(pData.AddrOfPinnedObject());
        pData.Free();

        return instance;
    }
}

[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)]
public struct WaveHeader
{
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
    public string ChunkId;

    public int FileSize; /* Size of the file - 8 bytes */

    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
    public string TypeHeader;

    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
    public string FormatMarker;

    public int SubChunkSize; /* 16, ChunkId부터 FormatMarker 필드까지의 크기 */

    public short AudioFormat; /* 1 is PCM */

    public short Channels;

    public int SampleRate;

    public int ByteRate; /* (Sample Rate * BitsPerSample * Channels) / 8 */

    public short BlockAlign; /* (BitsPerSample * Channels) / 8.1 - 8 bit mono2 - 8 bit stereo/16 bit mono4 - 16 bit stereo */

    public short BitsPerSample;

    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
    public string DataChunkHeader;

    public int DataSize; /* Size of the data section: SizeOf(wave_file) - Header(44) */
    
    public override string ToString()
    {
        return $"ChunkId: {ChunkId}, FileSize: {FileSize}, TypeHeader: {TypeHeader}, FormatMarker: {FormatMarker
            }, SubChunkSize: {SubChunkSize}, AudioFormat: {AudioFormat}, Channels: {Channels}, SampleRate: {SampleRate
            }, ByteRate: {ByteRate}, BlockAlign: {BlockAlign}, BitsPerSample: {BitsPerSample}, DataChunkHeader: {DataChunkHeader
            }, DataSize: {DataSize}";
    }
}

Windows가 기본 내장한 "C:\Windows\Media\Alarm01.wav" 파일에 대해 읽어서 출력해 보면,

using Wave;

namespace ConsoleApp1;

internal class Program
{
    static void Main(string[] args)
    {
        string waveFilePath = @"C:\Windows\Media\Alarm01.wav";
        WaveFile wf = new WaveFile(waveFilePath);

        Console.WriteLine(wf.Header);
    }
}

/* 출력 결과:
ChunkId: RIFF, FileSize: 491508, TypeHeader: WAVE, FormatMarker: fmt , SubChunkSize: 16, AudioFormat: 1, Channels: 2, SampleRate: 22050, ByteRate: 88200, BlockAlign: 4, BitsPerSample: 16, DataChunkHeader: data, DataSize: 491472
*/


값이 잘 나오는 것을 확인할 수 있습니다.




헤더를 분석했으니, 이제 반대로 해당 정보만 있으면 Wave 파일을 재구성하는 코드를 작성하는 것도 가능합니다.

public class WaveFile
{
    // ...[생략]...

    internal static void Create(string filePath, int sampleRate, short bitsPerSample, short channels, byte[] data)
    {
        int headerSize = Marshal.SizeOf<WaveHeader>();

        using (FileStream fs = File.Create(filePath))
        using (BinaryWriter bw = new BinaryWriter(fs, Encoding.ASCII))
        {
            bw.Write(Encoding.ASCII.GetBytes("RIFF"), 0, 4);
            bw.Write(headerSize + data.Length - 8);
            bw.Write(Encoding.ASCII.GetBytes("WAVE"), 0, 4);
            bw.Write(Encoding.ASCII.GetBytes("fmt "), 0, 4);
            bw.Write(16);
            bw.Write((short)1); // 1 is PCM
            bw.Write(channels);
            bw.Write(sampleRate);
            bw.Write((sampleRate * bitsPerSample * channels) / 8); // ByteRate
            bw.Write((short)((bitsPerSample * channels) / 8)); // BlockAlign
            
            bw.Write(bitsPerSample);
            bw.Write(Encoding.ASCII.GetBytes("data"), 0, 4);
            bw.Write(data.Length);

            fs.Write(data);
        }
    }
}

(첨부 파일은 위의 예제 코드를 포함합니다.)

^^ 다음 편에서는, 위의 헤더를 쓰는 코드로 PCM 데이터까지 기록함으로써 wav 파일을 실제로 만들어 보겠습니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 4/15/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 46  47  48  49  50  51  52  53  54  55  [56]  57  58  59  60  ...
NoWriterDateCnt.TitleFile(s)
12265정성태7/10/20209876오류 유형: 629. Visual Studio - 웹 애플리케이션 실행 시 "Unable to connect to web server 'IIS Express'." 오류 발생
12264정성태7/9/202019053오류 유형: 628. docker: Error response from daemon: Conflict. The container name "..." is already in use by container "...".
12261정성태7/9/202012086VS.NET IDE: 148. 윈도우 10에서 .NET Core 응용 프로그램을 리눅스 환경에서 실행하는 2가지 방법 - docker, WSL 2 [5]
12260정성태7/8/202010219.NET Framework: 926. C# - ETW를 이용한 ThreadPool 스레드 감시파일 다운로드1
12259정성태7/8/20209800오류 유형: 627. nvlddmkm.sys의 BAD_POOL_HEADER BSOD 문제 [1]
12258정성태7/8/202013076기타: 77. DataDog APM 간략 소개
12257정성태7/7/20209979.NET Framework: 925. C# - ETW를 이용한 Monitor Enter/Exit 감시파일 다운로드1
12256정성태7/7/202010409.NET Framework: 924. C# - Reflection으로 변경할 수 없는 readonly 정적 필드 [4]
12255정성태7/6/202010931.NET Framework: 923. C# - ETW(Event Tracing for Windows)를 이용한 Finalizer 실행 감시파일 다운로드1
12254정성태7/2/202010723오류 유형: 626. git - REMOTE HOST IDENTIFICATION HAS CHANGED!
12253정성태7/2/202012069.NET Framework: 922. C# - .NET ThreadPool의 Local/Global Queue파일 다운로드1
12252정성태7/2/202013938.NET Framework: 921. C# - I/O 스레드를 사용한 비동기 소켓 서버/클라이언트파일 다운로드2
12251정성태7/1/202012025.NET Framework: 920. C# - 파일의 비동기 처리 유무에 따른 스레드 상황 [1]파일 다운로드2
12250정성태6/30/202014607.NET Framework: 919. C# - 닷넷에서의 진정한 비동기 호출을 가능케 하는 I/O 스레드 사용법 [1]파일 다운로드1
12249정성태6/29/202010654오류 유형: 625. Microsoft SQL Server 2019 RC1 Setup - 설치 제거 시 Warning 26003 오류 발생
12248정성태6/29/20208930오류 유형: 624. SQL 서버 오류 - service-specific error code 17051
12247정성태6/29/202010540.NET Framework: 918. C# - 불린 형 상수를 반환값으로 포함하는 3항 연산자 사용 시 단축 표현 권장(IDE0075) [2]파일 다운로드1
12246정성태6/29/202011224.NET Framework: 917. C# - USB 관련 ETW(Event Tracing for Windows)를 이용한 키보드 입력을 감지하는 방법
12245정성태6/24/202011772.NET Framework: 916. C# - Task.Yield 사용법 (2) [2]파일 다운로드1
12244정성태6/24/202011635.NET Framework: 915. ETW(Event Tracing for Windows)를 이용한 닷넷 프로그램의 내부 이벤트 활용 [1]파일 다운로드1
12243정성태6/23/20209008VS.NET IDE: 147. Visual C++ 프로젝트 - .NET Core EXE를 "Debugger Type"으로 지원하는 기능 추가
12242정성태6/23/20209945오류 유형: 623. AADSTS90072 - User account '...' from identity provider 'live.com' does not exist in tenant 'Microsoft Services'
12241정성태6/23/202013217.NET Framework: 914. C# - Task.Yield 사용법파일 다운로드1
12240정성태6/23/202014561오류 유형: 622. 소켓 바인딩 시 "System.Net.Sockets.SocketException: An attempt was made to access a socket in a way forbidden by its access permissions" 오류 발생
12239정성태6/21/202011272Linux: 30. (윈도우라면 DLL에 속하는) .so 파일이 텍스트로 구성된 사례 [1]
12238정성태6/21/202011024.NET Framework: 913. C# - SharpDX + DXGI를 이용한 윈도우 화면 캡처 라이브러리
... 46  47  48  49  50  51  52  53  54  55  [56]  57  58  59  60  ...