Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luchkonikita/music_player
Music player for VK built with electron
https://github.com/luchkonikita/music_player
Last synced: 2 days ago
JSON representation
Music player for VK built with electron
- Host: GitHub
- URL: https://github.com/luchkonikita/music_player
- Owner: luchkonikita
- Created: 2015-11-08T19:41:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-10T14:34:53.000Z (about 9 years ago)
- Last Synced: 2024-11-17T16:00:23.216Z (2 months ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Music player for VK.com
![alt text](docs/screenshot.png 'App screenshot')
Current functionality includes:
* Retrieving user's audios
* Searching for songs from another user's audios
* Adding a song to user audios
* Downloading a song which is playing now
* to be continued...##### Approximate state structure used in application:
```javascript
{
userData: {
access_token: 'token',
expires_in: '86400',
user_id: 1
},
currentSong: {
artist: 'Artist',
title: 'Title',
currentTime: 213,
duration: 310,
isPlaying: true,
progress: 80
},
songsList: [
{
title: 'Title',
artist: 'Artist',
isOwn: true,
isAdded: false
}
]
}
```