Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Command Line
--partial-check {none,weak,strict}
Check for and overwrite partially ripped files. "weak" will err on the side of not re-ripping the file if it is unsure, whereas "strict" will re-rip the file [Default=weak]
--play-token-resume RESUME_AFTER
If the 'play token' is lost to a different device using the same Spotify account, the script will wait a speficied amount of time before restarting. This argument takes the same values as --resume-after [Default=abort]
If the 'play token' is lost to a different device using the same Spotify account, the script will wait a specified amount of time before restarting. This argument takes the same values as --resume-after [Default=abort]
--playlist-m3u create a m3u file when ripping a playlist
--playlist-wpl create a wpl file when ripping a playlist
--playlist-sync Sync playlist songs (rename and remove old songs)
Expand Down Expand Up @@ -355,7 +355,7 @@ To install pyenv using homebrew:
$ brew update
$ brew install pyenv
$ eval "$(pyenv init -)"
## the next line ensures 'eval "$(pyenv init -)"' is run everytime terminal is opened
## the next line ensures 'eval "$(pyenv init -)"' is run every time terminal is opened
$ echo 'if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi' >> ~/.bash_profile
$ pyenv install 2.7.10 # or whatever version of python you want
$ pyenv global 2.7.10
Expand Down
2 changes: 1 addition & 1 deletion Vagrant/vagrant_configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Install encoding
sudo apt-get install language-pack-UTF-8

# Add respository
# Add repository
sudo apt-add-repository multiverse

# Update apt-get
Expand Down
2 changes: 1 addition & 1 deletion spotify_ripper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def main(prog_args=sys.argv[1:]):
parser.add_argument(
'--play-token-resume', metavar="RESUME_AFTER",
help='If the \'play token\' is lost to a different device using '
'the same Spotify account, the script will wait a speficied '
'the same Spotify account, the script will wait a specified '
'amount of time before restarting. This argument takes the same '
'values as --resume-after [Default=abort]')
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion spotify_ripper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def format_time(seconds, total=None, short=False):

HH:MM:SS.

Otherwise, the format is exacly 6 characters long and of the form:
Otherwise, the format is exactly 6 characters long and of the form:

1w 3d
2d 4h
Expand Down