All Projects → moonwave99 → Playa Old

moonwave99 / Playa Old

Licence: mit
The OS X Audio Player that thinks in albums.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Playa Old

Neptunes
simple and reliable Last.fm scrobbler for iTunes and Spotify for macOS
Stars: ✭ 98 (+22.5%)
Mutual labels:  lastfm, osx
Swift Radio Pro
Professional Radio Station App for iOS!
Stars: ✭ 2,644 (+3205%)
Mutual labels:  audio-player, lastfm
Musaicfm
Screensaver inspired by Apple’s inbuilt iTunes Screensaver. It can display Artwork by Spotify or last.fm Profile Data.
Stars: ✭ 144 (+80%)
Mutual labels:  lastfm, osx
amplyfm
A free and open-source web app for streaming music.
Stars: ✭ 46 (-42.5%)
Mutual labels:  lastfm, audio-player
Sbplayerclient
支持全格式的mac版视频播放器
Stars: ✭ 110 (+37.5%)
Mutual labels:  audio-player, osx
Strawberry
🍓 Strawberry Music Player
Stars: ✭ 972 (+1115%)
Mutual labels:  audio-player, lastfm
Terraenv
Terraform & Terragrunt Version Manager
Stars: ✭ 72 (-10%)
Mutual labels:  osx
Chrysalisp
Parallel OS, with GUI, Terminal, OO Assembler, Class libraries, C-Script compiler, Lisp interpreter and more...
Stars: ✭ 1,205 (+1406.25%)
Mutual labels:  osx
Timelapsebuilder Swift
Build a movie from jpeg images in Swift using AVFoundation
Stars: ✭ 72 (-10%)
Mutual labels:  osx
Spotifycurrentlyplaying.js
Display your currently playing Spotify song(s) using Last.fm scrobbling.
Stars: ✭ 71 (-11.25%)
Mutual labels:  lastfm
Disablemonitor
Easily disable or enable a monitor on your Mac.
Stars: ✭ 1,221 (+1426.25%)
Mutual labels:  osx
Podcastmenu
Put Overcast on your Mac's menu bar
Stars: ✭ 1,211 (+1413.75%)
Mutual labels:  osx
Macchanger
 Change your mac address, for macOS
Stars: ✭ 75 (-6.25%)
Mutual labels:  osx
Subethaedit
General purpose plain text editor for macOS. Widely known for its live collaboration feature.
Stars: ✭ 1,183 (+1378.75%)
Mutual labels:  osx
Homebrew Mac Cleanup
🗑️ Cleanup script for OSX
Stars: ✭ 1,202 (+1402.5%)
Mutual labels:  osx
.dots
💻 All of my dotfiles.
Stars: ✭ 72 (-10%)
Mutual labels:  osx
Audioplayermanager
⚠️ No longer maintained ⚠️ Small Swift Wrapper and Queue-Manager around AVPlayer which let you play MediaPlayer items and stream songs from URLs.
Stars: ✭ 78 (-2.5%)
Mutual labels:  audio-player
Macqq
mac版QQ,swift,macOS,仿QQ mac端
Stars: ✭ 72 (-10%)
Mutual labels:  osx
Zcash Apple
Zcash for Apple platforms
Stars: ✭ 75 (-6.25%)
Mutual labels:  osx
Zksforce
Cocoa library for calling the Salesforce.com Web Services API
Stars: ✭ 77 (-3.75%)
Mutual labels:  osx

Playa

Playa is the OS X audio player for those who enjoy thinking in playlist of beautiful albums, rather than shuffling over messed collections.

Playa Screenshot

Features

Philosophy

I put it straight: in ~ 10 years of OS X usage, I never found a music player that completely satisfied my needs, mostly because of playlist organisation. Most players, if not all, handle playlists as a list of tracks, rather than as a list of albums, the latter being at least for me the atom (no technology pun intended) of the listening experience.

So now that I found a solid match between a low level audio player, and an application environment easy to work with (namely Electron), I stopped whining and started working on my idea of audio player, soon a concrete audio player.

Install

Either download the latest build from here, or build manually:

$ npm install
$ gulp release

You'll find built app in the /release folder.

Development

Run

$ npm i
$ npm rebuild // see * below
$ npm start

* (in case you install new native modules and you run into the dreadful module version mismatch issue)

Test

$ npm run test

Tests are written in tape and should live along the code itself:

pathTo
  └── component
        ├── __stubs__
        |       └── index.js
        ├── index.js
        ├── component.js
        └── component.spec.js

Where index.jsis just:

import Component from './component';

export default Component;

The template for specs is:

import test from 'tape';
import Component from './';

test('whatToTest', (assert) => {
  ...
  assert.equal(
    something, toSomethingElse,
    'expected result',
  );
  ...
  assert.end();
});

If the need to mock underlyings deps arises, use proxyquire and place stubs into __stubs__/index.js:

export const Component = proxyquire('../Component', {
  __esModule: true,
  'lib_to_mock': {
    method_to_mock: () => ...,
  },
});

Import in the spec file accordingly then:

import { Component } from './__stubs__';
...

Keep in mind that proxyquire proxies the deps only, not the component itself, and it is meant to simulate network / fs layers. An abuse of its features is a smell of tight coupling, and implies a lot of work. Work less, and save tight coupling for the weekend.


Note: in order to use Discogs webservice you need to obtain a Consumer Key/Secret pair from them and create settings/discogs.json using following template:

{
  "DISCOGS_KEY"     : <yourDiscogsKey>,
  "DISCOGS_SECRET"  : <yourDiscogsSecret>
}

Same for Last.fm scrobbling, please save it to settings/lastfm.json:

{
  "LASTFM_KEY"     : <yourLastFmKey>,
  "LASTFM_SECRET"  : <yourLastFmSecret>
}

Roadmap

Plans for the close future are:

  • Implementation of MetaDoctor, an interface driven process that help you solve track metadata problems when importing media to playlists.

Plans for the not-so-close future:

  • search feature over a library, whose changes are monitored;
  • inclusion of arbitrary media URLs in playlists (Youtube, Soundcloud, Bandcamp...).

Known issues

  • no drag and drop of multiple albums/folders.

License

The MIT License (MIT)

Copyright (c) 2015-2017 Diego Caponera

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].