View on GitHub

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

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:

THE FLOW OF CONTROL:

Control Flow

The Basic Architecture Of The Software:

Software Arch

Modules and thier hierarchy:

modules

Screenshots:

1. The Initial screen prompting user for the path of the drive or folder containing music

Screenshot 1

2. The library is being displayed after being populated by scaning the drive

Screenshot 2

3. The library is being scrolled to the right to see the remaining fields. It can be scrolled up , down , left and right within that pane. We have used buffer to display the particular section of the library.

Screenshot 3

4. The playlist has been created and one of its entries is being played (the one that is highlighted in green ). The green cursor shows which entry is being played.

Screenshot 4

5. The library has been sorted by its TITLE field (by pressing ‘t’ in when in the library pane )and its clearly visible.

Screenshot 5

6. The playlist is being filled and it has no limitations in number of entries that it can hold , it can be browsed using then arrow keys and page up and page down.

Screenshot 6

7. The playlist is being saved in the name specified by the user. The playlist is save in the directory or drive that was given as the input by the user in the start

Screenshot 7