Create a program that will read and write ID3v1.1 MP3 Tags - Ask the user for th
ID: 3551041 • Letter: C
Question
Create a program that will read and write ID3v1.1 MP3 Tags
- Ask the user for the name of an mp3 file to open or enter exit to exit program
- Open mp3 file and read ID3 tag information
- Display current tag information to user
- ask user if they want to change any tag information
- If they want to change something, ask use to enter only the information they wish to change
- Write new ID3 tag info to mp3
- ID3v1.1 tag info is the last 128 bytes of an mp3 file. each field of the tag is a fixed length.
Tag = 3 characters
Title = 30 characters
Artist = 30 characters
Album = 30 characters
Year = 4 characters
Comment = 28 characters
Zero = 1 byte
Track = 1 byte
Genre = 1 byte
Sample mp3 file : http://www20.zippyshare.com/v/99564579/file.html
Explanation / Answer
#include #include using namespace std; int main() { long begin, end; ifstream myInputFile; myInputFile.open("01 Jungles.mp3", ios::in); if(!myInputFile.good()) { coutRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.