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

jcardana

Active member
Joined
Oct 26, 2015
Messages
36
Location
Rio Rancho, NM
Programming Experience
10+
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
 

jmcilhinney

VB.NET Forum Moderator
Staff member
Joined
Aug 17, 2004
Messages
14,876
Location
Sydney, Australia
Programming Experience
10+
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.
 
Top