The Initial Box is the interface when you run the code which contains couple of function which are labeled through number. The following label are below:
- Add
- New
- Play
- Pause
- Stop
- Resume
- Fast Forward
- Progress Bar
- First Song
- Previous Song
- Next Song
- Last Song
- Time of Music
- Duration of Music
- Shuffle
- Volume Bar
- List Box
- Sort by Ascending
- Sort by Descending
- Search Music
In the WORD document as "Code.docx"
Install Visual Studio to PC and then just click the "MusicPlayer.sln" file, which should open the whole project. There are sample audio's in the folder which is in two sets one with the number and the other with the letters, to be able to sort them out in the music player.
A playlist is a list of video or audio files that can be played back on a media player either sequentially or in a shuffled order. In its most general form, an audio playlist is simply a list of songs, but sometimes a loop.
Some Internet streaming services, such as Spotify, Amazon Music, Project Playlist, MagicPlaylist, 8tracks, Plurn and Webjay, allow users to categorize, edit, and listen to playlists online. Other sites focus on playlist creation aided by personalized song recommendations, ratings, and reviews. On certain sites, users create and share annotated playlists, giving visitors the option to read contextual information or reviewer comments about each song while listening.
My project is to create a music player that has the means to function like a player should. It could be done using any Programming language, on addition must have three things (Search Algorithm, Sort Algorithm and an Abstract Data Type). The following are the choices I made:
- For Language: C# Language.
- For ADT: Queue with Array Implementation.
- For Search Algorithm: Linear Search.
- For Sort Algorithm: Bubble Sort.