https://github.com/s3bu7i/music-player-app
Musici App Player is a lightweight and customizable music player built using JavaScript. It allows users to seamlessly play their favorite music tracks with a user-friendly interface.
https://github.com/s3bu7i/music-player-app
frontend html-css js
Last synced: 2 months ago
JSON representation
Musici App Player is a lightweight and customizable music player built using JavaScript. It allows users to seamlessly play their favorite music tracks with a user-friendly interface.
- Host: GitHub
- URL: https://github.com/s3bu7i/music-player-app
- Owner: s3bu7i
- License: mit
- Created: 2023-03-05T13:09:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-24T10:49:27.000Z (over 1 year ago)
- Last Synced: 2025-02-14T22:32:27.014Z (4 months ago)
- Topics: frontend, html-css, js
- Language: JavaScript
- Homepage: https://s3bu7i.github.io/Music-Player-App/
- Size: 26.8 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Musici App Player
Musici App Player is a lightweight and customizable music player built using JavaScript. It allows users to seamlessly play their favorite music tracks with a user-friendly interface.
## Features
- **Simple Interface**: Musici provides a clean and intuitive interface for users to easily navigate and control their music playback.
- **Customizable Themes**: Users can personalize their experience by choosing from a variety of themes to suit their preferences.
- **Cross-Platform Compatibility**: Musici is compatible with major web browsers, ensuring a seamless experience across different devices and operating systems.
- **Playlist Management**: Users can create, edit, and manage playlists to organize their music library efficiently.
- **Responsive Design**: The player is designed to adapt to different screen sizes, making it accessible on desktops, tablets, and mobile devices.## Installation
To use Musici App Player, simply include the JavaScript file `app.js` in your HTML file:
```html
```
## Usage
Initialization: Initialize the Musici player by calling the initialize() function:
```bash
Musici.initialize();
```
## Adding Music: Add your music files to the player using the addMusic() function:
```bash
Musici.addMusic('song.mp3', 'Song Title', 'Artist Name');
```
## Playback Controls: Control playback using the following functions:
```bash
// Play
Musici.play();// Pause
Musici.pause();// Next Track
Musici.next();// Previous Track
Musici.previous();```
## Customization: Customize the player's appearance by selecting a theme:
```bash
Musici.setTheme('dark');
```## License
Musici App Player is licensed under the MIT License. See the LICENSE file for details.
```bash
This README provides an overview of Musici App Player, including its features, installation instructions, usage guide, examples, and licensing information. Feel free to customize it further according to your project's needs!
```