how can i read from a file like music file (mp3, wav, or something else) it's properties,
like Album title, song's time, song's name and more, like ITunes read it or any music program.

Recommended Answers

All 15 Replies

??????????????

??????????????

Didn't help me... something else?

What type of help you want?

check this link .... and .....this link it has the same discussion

Thanks it's great, but do you know how can i take the time of the song?

Time of the songs mean? Length of the song or the time when it was recorded?

you mean it's running time..?

check this link for checking the length of audio file

According to the tutorial i posted..
u can find the length by following below:

string strlength = mp3.Properties.Duration.ToString();

thank you i will check it

how can i write only the minutes and the seconds? without this 00:03:25.56456
should i use split string?

never mind i got it :) if you want to know

mp3.Properties.Duration.Minutes.ToString() + ":" + mp3.Properties.Duration.Seconds.ToString();

if your problem is solved then please mark this thread closed

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.