terminal_player 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/.rspec +2 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +35 -0
- data/LICENSE +0 -0
- data/README.md +134 -0
- data/Rakefile +5 -0
- data/Vagrantfile +119 -0
- data/bin/fish_functions/di.fish +3 -0
- data/bin/fish_functions/soma.fish +3 -0
- data/bin/fish_functions/spot.fish +3 -0
- data/bin/fish_functions/tp.fish +3 -0
- data/bin/terminal_player +79 -0
- data/bootstrap.sh +33 -0
- data/lib/terminal_player.rb +218 -0
- data/lib/terminal_player/di.rb +3 -0
- data/lib/terminal_player/di/audioaddict.rb +17 -0
- data/lib/terminal_player/di/di.rb +22 -0
- data/lib/terminal_player/mplayer.rb +43 -0
- data/lib/terminal_player/play_history.rb +14 -0
- data/lib/terminal_player/site.rb +94 -0
- data/lib/terminal_player/soma.rb +18 -0
- data/lib/terminal_player/spotiphy.rb +35 -0
- data/lib/terminal_player/spotiphy/spotiphy_player.rb +204 -0
- data/spec/lib/terminal_player/di/audioaddict_spec.rb +27 -0
- data/spec/lib/terminal_player/site_spec.rb +36 -0
- data/spec/lib/terminal_player_spec.rb +138 -0
- data/spec/spec_helper.rb +17 -0
- data/spotify_appkey.key +0 -0
- data/terminal_player.gemspec +26 -0
- metadata +137 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8d8b9b4a00ad634ae124ce33e3be5d89da597fab
|
4
|
+
data.tar.gz: cb7c2a68aed51dca87dbb28611ec4a0ff1e08c5e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 027a47aa153b550b300d9e77ae9ab7947ab4a2424c4de8ce3f49be9dac2a011803b5c277bb71bfc44b673f5ed5d23843e5f3e6888659dfd8fbd390e931961985
|
7
|
+
data.tar.gz: 63cf43f5a0f92fc78e862d60632f4b641f3728674541a62ee161af40d4a6bf9136fb93d0c4b1f231df71a55da98373a8f7c73fb7a0edaac117df25ca51205775
|
data/.gitignore
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
coverage
|
6
|
+
InstalledFiles
|
7
|
+
lib/bundler/man
|
8
|
+
pkg
|
9
|
+
rdoc
|
10
|
+
spec/reports
|
11
|
+
test/tmp
|
12
|
+
test/version_tmp
|
13
|
+
tmp
|
14
|
+
|
15
|
+
# YARD artifacts
|
16
|
+
.yardoc
|
17
|
+
_yardoc
|
18
|
+
doc/
|
19
|
+
|
20
|
+
.DS_Store
|
21
|
+
.spotify/*
|
22
|
+
spotify_tracefile.txt
|
23
|
+
.vagrant/*
|
24
|
+
|
25
|
+
tags
|
data/.rspec
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
terminal_player (0.0.5)
|
5
|
+
plaything (~> 1.1.1)
|
6
|
+
rake (~> 10.1.0)
|
7
|
+
rspec (~> 2.14.1)
|
8
|
+
spotify (~> 12.5.3)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
diff-lcs (1.2.5)
|
14
|
+
ffi (1.9.3)
|
15
|
+
libspotify (12.1.51.3)
|
16
|
+
plaything (1.1.1)
|
17
|
+
ffi (~> 1.1)
|
18
|
+
rake (10.1.1)
|
19
|
+
rspec (2.14.1)
|
20
|
+
rspec-core (~> 2.14.0)
|
21
|
+
rspec-expectations (~> 2.14.0)
|
22
|
+
rspec-mocks (~> 2.14.0)
|
23
|
+
rspec-core (2.14.7)
|
24
|
+
rspec-expectations (2.14.4)
|
25
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
26
|
+
rspec-mocks (2.14.4)
|
27
|
+
spotify (12.5.3)
|
28
|
+
ffi (~> 1.0, >= 1.0.11)
|
29
|
+
libspotify (~> 12.1.51)
|
30
|
+
|
31
|
+
PLATFORMS
|
32
|
+
ruby
|
33
|
+
|
34
|
+
DEPENDENCIES
|
35
|
+
terminal_player!
|
data/LICENSE
ADDED
File without changes
|
data/README.md
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
# Terminal Player
|
2
|
+
|
3
|
+
Terminal player is a bare-bones, terminal-based player for DI.fm, somafm.com, and Spotify. It's a thin wrapper around `mplayer` and `libspotify` and it outputs a single line of text for each song *without* using Curses. That's it. A two-line terminal is plenty of room:
|
4
|
+
|
5
|
+
```
|
6
|
+
16:28:34 [di/lounge] The Sura Quintet - Kept In Perspective
|
7
|
+
16:29:46 [di/lounge] Michel Petit - Voyage A Tipaza
|
8
|
+
```
|
9
|
+
|
10
|
+
Pull requests are encouraged.
|
11
|
+
|
12
|
+
## Spotify Integration
|
13
|
+
|
14
|
+
To use Spotify, you must have an account. Set these environment variables to your Spotify deets. In fish:
|
15
|
+
```
|
16
|
+
set -x SPOTIFY_USERNAME yourusername
|
17
|
+
set -x SPOTIFY_PASSWORD yourpassword
|
18
|
+
```
|
19
|
+
|
20
|
+
You can search Spotify or Google for the currently playing track by pressing `s`. See the usage and keybind sections for more.
|
21
|
+
|
22
|
+
## Installation
|
23
|
+
```
|
24
|
+
$ gem install terminal_player
|
25
|
+
```
|
26
|
+
|
27
|
+
Or from source:
|
28
|
+
```
|
29
|
+
$ git clone https://github.com/devshane/terminal-player.git
|
30
|
+
$ cd terminal-player
|
31
|
+
$ gem build ./terminal_player.gemspec
|
32
|
+
$ gem install ./terminal_player-0.0.4.gem
|
33
|
+
```
|
34
|
+
|
35
|
+
## Usage
|
36
|
+
```
|
37
|
+
Usage: terminal_player.rb [options] site channel
|
38
|
+
|
39
|
+
The `site` parameter can be one of: di, soma, or spotify.
|
40
|
+
|
41
|
+
When `site` is di or soma, the channel parameter should be a valid channel.
|
42
|
+
When `site` is spotify, the channel parameter should be a valid Spotify URI.
|
43
|
+
|
44
|
+
Spotify requires two environment variables: SPOTIFY_USERNAME and SPOTIFY_PASSWORD.
|
45
|
+
|
46
|
+
DI premium channels require an environment variable: DI_FM_PREMIUM_ID.
|
47
|
+
|
48
|
+
-s, --spotify-search Enable spotify URI searches
|
49
|
+
-c, --cache CACHE_SIZE Set the cache size (KB)
|
50
|
+
-m, --cache-min CACHE_MIN Set the minimum cache threshold (percent)
|
51
|
+
-h, --help Display this message
|
52
|
+
--play-history-path PATH Log the play history to PATH
|
53
|
+
```
|
54
|
+
|
55
|
+
Enabling `-s` or `--spotify-search` requires that you have the Spotify client installed. The option
|
56
|
+
just means terminal player will try to `open` Spotify URIs. This probably only works on OS X.
|
57
|
+
|
58
|
+
Examples:
|
59
|
+
```
|
60
|
+
# DI premium member, breaks channel
|
61
|
+
$ set -x DI_FM_PREMIUM_ID abc123; terminal_player di breaks
|
62
|
+
|
63
|
+
# DI public breaks channel
|
64
|
+
$ terminal_player di breaks
|
65
|
+
|
66
|
+
# Soma Secret Agent, enable spotify URI searches
|
67
|
+
$ terminal_player -s soma secretagent130
|
68
|
+
|
69
|
+
# Soma Groove Salad, log the song history to the desktop in a folder called played_songs
|
70
|
+
$ terminal_player --play-history-path ~/Desktop/played_songs soma groovesalad
|
71
|
+
|
72
|
+
# Spotify bitchin playlist
|
73
|
+
$ terminal_player spotify spotify:user:whoknows:playlist:0AykzuRPoExXhCRlazt14O
|
74
|
+
|
75
|
+
# Spotify track
|
76
|
+
$ terminal_player spotify spotify:track:2CTXWl2vo9oLXZaaBhpw2p
|
77
|
+
```
|
78
|
+
|
79
|
+
## Channel lists
|
80
|
+
|
81
|
+
For DI and Soma, terminal player can dump a list of channels and then exit if you use `channels` as the channel argument:
|
82
|
+
```
|
83
|
+
$ terminal_player di channels
|
84
|
+
|
85
|
+
ambient drumandbass minimal
|
86
|
+
bigroomhouse dubstep moombahton
|
87
|
+
breaks eclectronica oldschoolacid
|
88
|
+
chillhop electro progressive
|
89
|
+
chillout electronicpioneers progressivepsy
|
90
|
+
chilloutdreams epictrance psychill
|
91
|
+
chillstep eurodance russianclubhits
|
92
|
+
chiptunes funkyhouse sankeys
|
93
|
+
classiceurodance futuresynthpop scousehouse
|
94
|
+
classiceurodisco gabber soulfulhouse
|
95
|
+
classictechno glitchhop spacemusic
|
96
|
+
classictrance goapsy techhouse
|
97
|
+
classicvocaltrance handsup techno
|
98
|
+
club hardcore trance
|
99
|
+
clubdubstep harddance trap
|
100
|
+
cosmicdowntempo hardstyle tribalhouse
|
101
|
+
darkdnb hardtechno ukgarage
|
102
|
+
deephouse house umfradio
|
103
|
+
deepnudisco latinhouse vocalchillout
|
104
|
+
deeptech liquiddnb vocallounge
|
105
|
+
discohouse liquiddubstep vocaltrance
|
106
|
+
djmixes lounge
|
107
|
+
downtempolounge mainstage
|
108
|
+
|
109
|
+
$
|
110
|
+
```
|
111
|
+
|
112
|
+
## Keybinds
|
113
|
+
|
114
|
+
```
|
115
|
+
c - Display a channel list
|
116
|
+
n - Change to next track (Spotify mode)
|
117
|
+
r - Refresh display
|
118
|
+
s - Launch the Spotify player for the track/artist name
|
119
|
+
S - Launch a Google search for the track/artist name
|
120
|
+
9 - Lower volume (not in Spotify mode)
|
121
|
+
0 - Raise volume (not in Spotify mode)
|
122
|
+
<space> - Pause (not in Spotify mode)
|
123
|
+
```
|
124
|
+
|
125
|
+
If you didn't specify `--spotify-search` on the command line, `s` will fall back to a Google search.
|
126
|
+
|
127
|
+
## Play logs
|
128
|
+
|
129
|
+
They're rotated daily. They're formatted like the display is:
|
130
|
+
```
|
131
|
+
22:34:19 [soma/secretagent130] Akasha - Mescalin
|
132
|
+
22:36:14 [soma/secretagent130] Sunday Combo - Ball Chair
|
133
|
+
22:39:14 [soma/secretagent130] Daniele Luppi - The Lost Island (Lp Version)
|
134
|
+
```
|
data/Rakefile
ADDED
data/Vagrantfile
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
# -*- mode: ruby -*-
|
2
|
+
# vi: set ft=ruby :
|
3
|
+
|
4
|
+
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
5
|
+
VAGRANTFILE_API_VERSION = "2"
|
6
|
+
|
7
|
+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
8
|
+
# All Vagrant configuration is done here. The most common configuration
|
9
|
+
# options are documented and commented below. For a complete reference,
|
10
|
+
# please see the online documentation at vagrantup.com.
|
11
|
+
|
12
|
+
# Every Vagrant virtual environment requires a box to build off of.
|
13
|
+
config.vm.box = "precise64"
|
14
|
+
config.vm.provision :shell, :path => "bootstrap.sh"
|
15
|
+
|
16
|
+
# The url from where the 'config.vm.box' box will be fetched if it
|
17
|
+
# doesn't already exist on the user's system.
|
18
|
+
# config.vm.box_url = "http://domain.com/path/to/above.box"
|
19
|
+
|
20
|
+
# Create a forwarded port mapping which allows access to a specific port
|
21
|
+
# within the machine from a port on the host machine. In the example below,
|
22
|
+
# accessing "localhost:8080" will access port 80 on the guest machine.
|
23
|
+
# config.vm.network :forwarded_port, guest: 80, host: 8080
|
24
|
+
|
25
|
+
# Create a private network, which allows host-only access to the machine
|
26
|
+
# using a specific IP.
|
27
|
+
# config.vm.network :private_network, ip: "192.168.33.10"
|
28
|
+
|
29
|
+
# Create a public network, which generally matched to bridged network.
|
30
|
+
# Bridged networks make the machine appear as another physical device on
|
31
|
+
# your network.
|
32
|
+
# config.vm.network :public_network
|
33
|
+
|
34
|
+
# If true, then any SSH connections made will enable agent forwarding.
|
35
|
+
# Default value: false
|
36
|
+
# config.ssh.forward_agent = true
|
37
|
+
|
38
|
+
# Share an additional folder to the guest VM. The first argument is
|
39
|
+
# the path on the host to the actual folder. The second argument is
|
40
|
+
# the path on the guest to mount the folder. And the optional third
|
41
|
+
# argument is a set of non-required options.
|
42
|
+
# config.vm.synced_folder "../data", "/vagrant_data"
|
43
|
+
|
44
|
+
# Provider-specific configuration so you can fine-tune various
|
45
|
+
# backing providers for Vagrant. These expose provider-specific options.
|
46
|
+
# Example for VirtualBox:
|
47
|
+
#
|
48
|
+
# config.vm.provider :virtualbox do |vb|
|
49
|
+
# # Don't boot with headless mode
|
50
|
+
# vb.gui = true
|
51
|
+
#
|
52
|
+
# # Use VBoxManage to customize the VM. For example to change memory:
|
53
|
+
# vb.customize ["modifyvm", :id, "--memory", "1024"]
|
54
|
+
# end
|
55
|
+
#
|
56
|
+
# View the documentation for the provider you're using for more
|
57
|
+
# information on available options.
|
58
|
+
|
59
|
+
# Enable provisioning with Puppet stand alone. Puppet manifests
|
60
|
+
# are contained in a directory path relative to this Vagrantfile.
|
61
|
+
# You will need to create the manifests directory and a manifest in
|
62
|
+
# the file base.pp in the manifests_path directory.
|
63
|
+
#
|
64
|
+
# An example Puppet manifest to provision the message of the day:
|
65
|
+
#
|
66
|
+
# # group { "puppet":
|
67
|
+
# # ensure => "present",
|
68
|
+
# # }
|
69
|
+
# #
|
70
|
+
# # File { owner => 0, group => 0, mode => 0644 }
|
71
|
+
# #
|
72
|
+
# # file { '/etc/motd':
|
73
|
+
# # content => "Welcome to your Vagrant-built virtual machine!
|
74
|
+
# # Managed by Puppet.\n"
|
75
|
+
# # }
|
76
|
+
#
|
77
|
+
# config.vm.provision :puppet do |puppet|
|
78
|
+
# puppet.manifests_path = "manifests"
|
79
|
+
# puppet.manifest_file = "site.pp"
|
80
|
+
# end
|
81
|
+
|
82
|
+
# Enable provisioning with chef solo, specifying a cookbooks path, roles
|
83
|
+
# path, and data_bags path (all relative to this Vagrantfile), and adding
|
84
|
+
# some recipes and/or roles.
|
85
|
+
#
|
86
|
+
# config.vm.provision :chef_solo do |chef|
|
87
|
+
# chef.cookbooks_path = "../my-recipes/cookbooks"
|
88
|
+
# chef.roles_path = "../my-recipes/roles"
|
89
|
+
# chef.data_bags_path = "../my-recipes/data_bags"
|
90
|
+
# chef.add_recipe "mysql"
|
91
|
+
# chef.add_role "web"
|
92
|
+
#
|
93
|
+
# # You may also specify custom JSON attributes:
|
94
|
+
# chef.json = { :mysql_password => "foo" }
|
95
|
+
# end
|
96
|
+
|
97
|
+
# Enable provisioning with chef server, specifying the chef server URL,
|
98
|
+
# and the path to the validation key (relative to this Vagrantfile).
|
99
|
+
#
|
100
|
+
# The Opscode Platform uses HTTPS. Substitute your organization for
|
101
|
+
# ORGNAME in the URL and validation key.
|
102
|
+
#
|
103
|
+
# If you have your own Chef Server, use the appropriate URL, which may be
|
104
|
+
# HTTP instead of HTTPS depending on your configuration. Also change the
|
105
|
+
# validation key to validation.pem.
|
106
|
+
#
|
107
|
+
# config.vm.provision :chef_client do |chef|
|
108
|
+
# chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
|
109
|
+
# chef.validation_key_path = "ORGNAME-validator.pem"
|
110
|
+
# end
|
111
|
+
#
|
112
|
+
# If you're using the Opscode platform, your validator client is
|
113
|
+
# ORGNAME-validator, replacing ORGNAME with your organization name.
|
114
|
+
#
|
115
|
+
# If you have your own Chef Server, the default validation client name is
|
116
|
+
# chef-validator, unless you changed the configuration.
|
117
|
+
#
|
118
|
+
# chef.validation_client_name = "ORGNAME-validator"
|
119
|
+
end
|
data/bin/terminal_player
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'optparse'
|
3
|
+
require 'terminal_player'
|
4
|
+
|
5
|
+
options = {
|
6
|
+
cache: 512,
|
7
|
+
cache_min: 30,
|
8
|
+
play_history_path: '',
|
9
|
+
spotify_search: false,
|
10
|
+
di_plus: false
|
11
|
+
}
|
12
|
+
|
13
|
+
@optparser = OptionParser.new do |o|
|
14
|
+
o.banner = "Usage: terminal_player [options] site channel"
|
15
|
+
o.separator ""
|
16
|
+
o.separator "The `site` parameter can be one of: di, soma, or spotify."
|
17
|
+
o.separator ""
|
18
|
+
o.separator "When `site` is di or soma, the channel parameter should be a valid channel."
|
19
|
+
o.separator "When `site` is spotify, the channel parameter should be a valid Spotify URI."
|
20
|
+
o.separator ""
|
21
|
+
o.separator "Spotify requires two environment variables: SPOTIFY_USERNAME and SPOTIFY_PASSWORD."
|
22
|
+
o.separator ""
|
23
|
+
o.separator "DI premium channels require an environment variable: DI_FM_PREMIUM_ID."
|
24
|
+
o.separator ""
|
25
|
+
|
26
|
+
o.on('-s', '--spotify-search', 'Enable spotify URI searches') do |s|
|
27
|
+
options[:spotify_search] = true
|
28
|
+
end
|
29
|
+
o.on('-c CACHE_SIZE', '--cache CACHE_SIZE', 'Set the cache size (KB)') do |c|
|
30
|
+
options[:cache] = c
|
31
|
+
end
|
32
|
+
o.on('-m CACHE_MIN', '--cache-min CACHE_MIN', 'Set the minimum cache threshold (percent)') do |m|
|
33
|
+
options[:cache_min] = m
|
34
|
+
end
|
35
|
+
o.on('-h', '--help', 'Display this message') { puts o; exit }
|
36
|
+
|
37
|
+
o.on('--play-history-path PATH', 'Log the play history to PATH') do |ph|
|
38
|
+
options[:play_history_path] = ph
|
39
|
+
end
|
40
|
+
|
41
|
+
o.on('--di-plus', 'Display song durations and votes') do |dip|
|
42
|
+
options[:di_plus] = true
|
43
|
+
end
|
44
|
+
|
45
|
+
o.parse!
|
46
|
+
end
|
47
|
+
|
48
|
+
def usage
|
49
|
+
puts @optparser
|
50
|
+
puts
|
51
|
+
exit
|
52
|
+
end
|
53
|
+
|
54
|
+
if ARGV[0].nil? || ARGV[1].nil?
|
55
|
+
usage
|
56
|
+
end
|
57
|
+
|
58
|
+
if ARGV[0] == 'di'
|
59
|
+
if ENV.fetch('DI_FM_PREMIUM_ID', '').empty?
|
60
|
+
options[:url] = "http://listen.di.fm/public3/#{ARGV[1]}.pls"
|
61
|
+
else
|
62
|
+
options[:url] = "http://listen.di.fm/premium_high/#{ARGV[1]}.pls?#{ENV['DI_FM_PREMIUM_ID']}"
|
63
|
+
end
|
64
|
+
elsif ARGV[0] == 'soma'
|
65
|
+
options[:url] = "http://somafm.com/#{ARGV[1]}.pls"
|
66
|
+
elsif ARGV[0]['spot']
|
67
|
+
options[:url] = ARGV[1]
|
68
|
+
else
|
69
|
+
usage
|
70
|
+
end
|
71
|
+
|
72
|
+
Signal.trap("INT") do |sig|
|
73
|
+
puts
|
74
|
+
exit
|
75
|
+
end
|
76
|
+
|
77
|
+
tp = TerminalPlayer.new(options)
|
78
|
+
tp.play
|
79
|
+
|
data/bootstrap.sh
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
apt-get update
|
2
|
+
|
3
|
+
apt-get install -y build-essential checkinstall
|
4
|
+
apt-get install -y git
|
5
|
+
apt-get install -y libopenal1 libopenal-dev
|
6
|
+
apt-get install -y mplayer
|
7
|
+
|
8
|
+
# rbenv
|
9
|
+
|
10
|
+
git clone https://github.com/sstephenson/rbenv.git ~vagrant/.rbenv
|
11
|
+
echo 'export PATH=\"$HOME/.rbenv/bin:$PATH\"' >> ~vagrant/.bashrc
|
12
|
+
echo 'eval \"$(rbenv init -)\"' >> ~vagrant/.bashrc
|
13
|
+
|
14
|
+
mkdir ~vagrant/.rbenv/plugins
|
15
|
+
git clone https://github.com/sstephenson/ruby-build.git ~vagrant/.rbenv/plugins/ruby-build
|
16
|
+
|
17
|
+
chown -R vagrant:vagrant ~vagrant
|
18
|
+
|
19
|
+
echo
|
20
|
+
echo "the box is almost ready to go. execute these commands:"
|
21
|
+
echo
|
22
|
+
echo "$ rbenv install 2.0.0-p353"
|
23
|
+
echo "$ rbenv global 2.0.0-p353"
|
24
|
+
echo "$ gem install bundler"
|
25
|
+
echo "$ rbenv rehash"
|
26
|
+
echo "$ cd /vagrant"
|
27
|
+
echo "$ bundle install"
|
28
|
+
echo "$ gem build ./terminal_player.gemspec"
|
29
|
+
echo "$ gem install ./terminal_player-0.0.5.gem"
|
30
|
+
echo "$ rbenv rehash"
|
31
|
+
echo
|
32
|
+
echo "and you're good to go..."
|
33
|
+
|