-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add output folder, skip already ripped #4
base: master
Are you sure you want to change the base?
Conversation
…mands properly. Added optional output directory. Added --ignoreerrors (skip to next track in playlist on error).
playback = False # set if you want to listen to the tracks that are currently ripped (start with "padsp ./jbripper.py ..." if using pulse audio) | ||
# Music library imports | ||
import fnmatch | ||
import eyed3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for me it has to be "import eyeD3" to be working on Ubuntu 13.10 and Python 2.7.4. I'm not good in Python but would it be possible to check for both or depending on python version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strange! It would be solved by changing this line to:
try:
import eyed3
except ImportError:
import eyeD3 as eyed3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated to eyeD3 version 0.7.4 and it works now with "eyed3". Before I was using something version 0.6.x. Thanks!
- Added link types album and artist - Cover downloading only if exists
@see api.h of pyspotify lilbrary
Added link types album, artist and starred. Updated README.md. Set preferred bitrate to 320kps.
Already ripped tracks will be skipped when ripping a playlist. The user can provide an optional fourth argument to change the output dir.