Skip to content

Commit

Permalink
v2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SathyaBhat committed Mar 15, 2017
1 parent 915a555 commit 64772aa
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Pre-requisite: You need Python 3+
- `user_name` is the user name who created the playlist.
- `download_directory` is the location where the songs must be downloaded to.
5. A first time run will require authentication; you will need to click on the URL prompted to authenticate. Once logged in, paste the URL back in.
6. To retrieve download songs as MP3, you will need to install ffmpeg.
6. To retrieve download songs as MP3, you will need to install ffmpeg. If you prefer to skip MP3 conversion, pass `-m` or `--skip_mp3` as a parameter when running the script
- Linux users can get them by installing libav-tools by using apt-get (`sudo apt-get install -y libav-tools`) or a package manager which comes with your distro
- Windows users can download FFMPEG pre-built binaries from [here](http://ffmpeg.zeranoe.com/builds/). Extract the file using [7-zip](http://7-zip.org/) to a foldrer and [add the folder to your PATH environment variable](http://www.wikihow.com/Install-FFmpeg-on-Windows)

###Credits
- [rhnvrm](https://github.com/rhnvrm) for [adding in youtube-dl](https://github.com/SathyaBhat/spotify-dl/pull/1)
- [mr-karan](https://github.com/mr-karan) for [adding save to directory](https://github.com/SathyaBhat/spotify-dl/pull/6)
- [shantanugoel](https://github.com/shantanugoel) for adding in [User playlist support](https://github.com/SathyaBhat/spotify-dl/pull/7)
- [shantanugoel](https://github.com/SathyaBhat/spotify-dl/issues?q=is%3Apr+is%3Aopen+author%3Ashantanugoel) for adding in [User playlist](https://github.com/SathyaBhat/spotify-dl/pull/7), [skip MP3 conversion]https://github.com/SathyaBhat/spotify-dl/pull/34() and [Ability to use custom format string support](https://github.com/SathyaBhat/spotify-dl/pull/34)
- [sildur](https://github.com/sildur) for adding any [user playlist support and other fixes](https://github.com/SathyaBhat/spotify-dl/pulls?q=is%3Apr+author%3Asildur+is%3Aclosed)
- [avinassh](https://github.com/avinassh) for being a [Rockstar](https://github.com/avinassh/rockstar) and not teleporting over to my house to kill me when I innundated him with questions
- [doulwyi](https://github.com/doulwyi) for adding id3 tagging and ability to parse Spotify URI
Expand Down
19 changes: 13 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ URLs which you can then plug into
`youtube-dl <https://rg3.github.io/youtube-dl/>`__

How do I get this thing running?
--------------------------------
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Pre-requisite: You need Python 3+

Expand Down Expand Up @@ -54,8 +54,10 @@ Pre-requisite: You need Python 3+
Set the key as ``YOUTUBE_DEV_KEY`` environment variable as mentioned
above.
4. Run the script using ``spotify_dl``. spotify\_dl accepts different
parameters, for more details run ``spotify_dl -h``. For most users
``spotify_dl -i spotify_URI -o download_directory`` should do where
parameters, for more details run ``spotify_dl -h``.

For most users ``spotify_dl -i spotify_URI -o download_directory``
should do where

- ``spotify_URI`` is Spotify's unique identifier. You can get it from
the 3-dot menu.
Expand Down Expand Up @@ -85,6 +87,8 @@ also work
on the URL prompted to authenticate. Once logged in, paste the URL
back in.
6. To retrieve download songs as MP3, you will need to install ffmpeg.
If you prefer to skip MP3 conversion, pass ``-m`` or ``--skip_mp3``
as a parameter when running the script

- Linux users can get them by installing libav-tools by using apt-get
(``sudo apt-get install -y libav-tools``) or a package manager which
Expand All @@ -96,15 +100,18 @@ also work
variable <http://www.wikihow.com/Install-FFmpeg-on-Windows>`__

Credits
-------
~~~~~~~

- `rhnvrm <https://github.com/rhnvrm>`__ for `adding in
youtube-dl <https://github.com/SathyaBhat/spotify-dl/pull/1>`__
- `mr-karan <https://github.com/mr-karan>`__ for `adding save to
directory <https://github.com/SathyaBhat/spotify-dl/pull/6>`__
- `shantanugoel <https://github.com/SathyaBhat/spotify-dl/issues?q=is%3Apr+is%3Aopen+author%3Ashantanugoel>`__
for adding in `User playlist
support <https://github.com/SathyaBhat/spotify-dl/pull/7>`__
for adding in `User
playlist <https://github.com/SathyaBhat/spotify-dl/pull/7>`__, [skip
MP3 conversion]https://github.com/SathyaBhat/spotify-dl/pull/34() and
`Ability to use custom format string
support <https://github.com/SathyaBhat/spotify-dl/pull/34>`__
- `sildur <https://github.com/sildur>`__ for adding any `user playlist
support and other
fixes <https://github.com/SathyaBhat/spotify-dl/pulls?q=is%3Apr+author%3Asildur+is%3Aclosed>`__
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open('requirements.txt') as f:
requirements = f.read().splitlines()

version = '2.3'
version = '2.4'

setup(
name='spotify_dl',
Expand Down
2 changes: 1 addition & 1 deletion spotify_dl/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
YOUTUBE_API_VERSION = "v3"
VIDEO = 'youtube#video'
YOUTUBE_VIDEO_URL = 'https://www.youtube.com/watch?v='
VERSION = '2.3.0'
VERSION = '2.4.0'

0 comments on commit 64772aa

Please sign in to comment.