Resolved Is there a Class with a Method that provides access to MP3 file data?

jcardana

Old to VB6, New to VB.NET
Joined
Oct 26, 2015
Messages
43
Location
Rio Rancho, NM
Programming Experience
Beginner
Specifically, I'm hoping to get the length of the file in TIME and a BitRate.
I'm still learning how all these frameworks, classes and such are structured and I have no clue about how to find what I'm looking for. I found nothing in the File OI class.
Thanks for your time,
Joe
 
There is no standard .NET type that works with MP3 files. I imagine that you could do it using unmanaged code, e.g. maybe mciSendString, but if you want to do it with managed code then you'd need a third-party audio library.
 
Back
Top