With this i can show the cover album of some audio file? #315
Replies: 3 comments
-
if you mean "album cover", then specify file types, from which do you expect to get covers, |
Beta Was this translation helpful? Give feedback.
-
With TagLib#, you can get a list of all the images embedded in a media file using property |
Beta Was this translation helpful? Give feedback.
-
If you want to write album cover to a file, you can try var data = TagLib.File.Create(path).Tag.Pictures[index].Data.Data;
File.WriteAllBytes(outputPath, data); |
Beta Was this translation helpful? Give feedback.
-
Somebody can tell me if this API help me to show the cover album from some audio file please?
Beta Was this translation helpful? Give feedback.
All reactions