Hi,
I am using NAudio.dll for my project for converting MP3 files to WAV files and WAV files to given WAV format ( as per given BitsPerSample, Channel, and sample rate).
Now i having another task to remove metadata from MP3, WAV files. How to remove metadata from these files and save using NAudio Assembly ?
Warm Regards
Sathyanarayanan.R
Comments: For MP3, just copy all Mp3Frames (using Mp3FileReader) into a new file, and not the ID3 tags For WAV, juts use WaveFileWriter to create a new WAV File, reading the data from the old one with WaveFileReader.
I am using NAudio.dll for my project for converting MP3 files to WAV files and WAV files to given WAV format ( as per given BitsPerSample, Channel, and sample rate).
Now i having another task to remove metadata from MP3, WAV files. How to remove metadata from these files and save using NAudio Assembly ?
Warm Regards
Sathyanarayanan.R
Comments: For MP3, just copy all Mp3Frames (using Mp3FileReader) into a new file, and not the ID3 tags For WAV, juts use WaveFileWriter to create a new WAV File, reading the data from the old one with WaveFileReader.