0
ID3 태그 수정을 위해 새 앱에서 일하고 있습니다.MP3 파일로 그림 쓰기 ID3.NET Windows 스토어 앱
제목, 앨범 및 아티스트를 편집 할 수 있지만 사진을 수정할 수 없습니다. 내가 재생중인 I 이미지를 볼 수없는 MP3 파일을 열 때
여기에 내 작은 코드
IList<string> artists = new List<string> { "test artist" };
tag.Title.Value = "my test";
tag.Album.Value = "album test";
tag.Artists.Value.Add("test artist");
tag.Pictures.Add(new Id3.Frames.PictureFrame
{
PictureData = array,
PictureType = Id3.Frames.PictureType.Media,
MimeType = "image/jpeg"
});
stream.WriteTag(tag, 1, 0, WriteConflictAction.Replace);
stream.Dispose();
입니다.
도와 주시겠습니까? 고맙습니다.