mp3player
This is a MP3 library manager with playlist editor and playback options written purely in C++ during our college (pre-final year) in 2010.
This is uploaded here to preserve the source code and as reference material to others. If anyone is interested in learning to build a console application in C++ or to understand how media files are handled or to understand how linked list can be used in an application, please feel free to use this resource.
We are not looking to maintain this repository.
Even thought this application was build a decade earlier, it still works in the current windows 10 environment without any rebuild (This is insane !!). We have preserved the decade old executable in the repository.
Note: The song in the player needs to be played using the ‘space bar’ before using the other playback controls like next and previous. If not the application breaks. We could have just made the first song in the playlist play but we didn’t. Wondering why and if there was any roadblock in implementing it. We wish we had a time machine.
Link to the video of the application in action
Team Members:
- Ghanithan Subramani
- Karthick Natesan
- S.V.Yuvaraj
THE FLOW OF CONTROL:
- The user first is asked to select the Drive from which the library is created.
- A playlist is created from the library by the user.
- Then the entries in the playlist can be played by the user.
- The library can be sorted based on the fields in their tag .
- The MP3 DECODER used is the inbuild music player in all the windows OS (Media Control Interface).
The Basic Architecture Of The Software:
- The system consists of the three major modules 1) Library ,2) playlist editor and 3)playback module.
- The modules are connected like this: library -> playlist editor -> playback .
- The library is the base , the other 2 modules are its derivatives.i.e., the playlist editor depends on library for its operations and the playback depends on the playlist for its operations.
- The linked list used for the library and the playlist are interlined .i.e the playlist creates its list from the library linkedlist .