flac 파일에서 음악 정보를 가져오는 방법을 알아봅니다.
아래 그림처럼 flac 파일의 미디어 정보를 가져오는 방법입니다.
먼저 아래 ' TagLibSharp' Nuget Package 를 설치해야합니다.
https://github.com/mono/taglib-sharp
아래와 같이 코딩하면 됩니다.
file 에 flac 파일 경로를 주면 됩니다.
var tfile = TagLib.File.Create(file);
Debug.WriteLine("Album: " + tfile.Tag.Album);
Debug.WriteLine("Title: " + tfile.Tag.Title);
Debug.WriteLine("Artist: " + tfile.Tag.FirstArtist);
Debug.WriteLine("Genre: " + tfile.Tag.FirstGenre);
Debug.WriteLine("Year: " + tfile.Tag.Year);
Debug.WriteLine("Disc: " + tfile.Tag.Disc);
결과
Album: 101 명작 가요 [Disc 3] Title: Say Goodbye Artist: 페이지, 김조한 Genre: 가요 Year: 2006 Disc: 3 |
C# 리스트 패턴 (List Pattern) (0) | 2024.06.09 |
---|---|
C#/Winform 각 모니터 별로 각각 다른 창 띄우기 (0) | 2024.06.09 |
Selenium 사용하여 웹사이트 열기 (0) | 2024.06.04 |
IHttpClientFactory 및 Polly 정책을 통해 HTTP 호출 재시도 구현하기 (0) | 2024.06.04 |
SocketsHttpHandler 사용 시 SSL 무시하기 (0) | 2024.06.04 |