scdl/scdl/scdl.py

459 lines
15 KiB
Python
Raw Normal View History

2015-05-14 00:41:45 -07:00
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
"""scdl allow you to download music from soundcloud
Usage:
2015-01-14 08:55:14 -08:00
scdl -l <track_url> [-a | -f | -t | -p][-c][-o <offset>]\
2015-08-24 18:38:00 -07:00
[--hidewarnings][--debug | --error][--path <path>][--addtofile][--onlymp3][--hide-progress]
2015-01-14 08:55:14 -08:00
scdl me (-s | -a | -f | -t | -p)[-c][-o <offset>]\
2015-08-24 18:38:00 -07:00
[--hidewarnings][--debug | --error][--path <path>][--addtofile][--onlymp3][--hide-progress]
2015-01-14 08:55:14 -08:00
scdl -h | --help
scdl --version
Options:
-h --help Show this screen
--version Show version
2014-11-16 09:19:42 -08:00
me Use the user profile from the auth_token
-l [url] URL can be track/playlist/user
-s Download the stream of a user (token needed)
-a Download all tracks of a user (including repost)
-t Download all uploads of a user
-f Download all favorites of a user
-p Download all playlists of a user
2014-11-16 09:19:42 -08:00
-c Continue if a music already exist
-o [offset] Begin with a custom offset
--path [path] Use a custom path for this time
2014-11-16 09:19:42 -08:00
--hidewarnings Hide Warnings. (use with precaution)
--addtofile Add the artist name to the filename if it isn't in the filename already
2015-01-19 11:23:46 -08:00
--onlymp3 Download only the mp3 file even if the track is Downloadable
--error Only print debug information (Error/Warning)
--debug Print every information and
2015-08-24 18:38:00 -07:00
--hide-progress Hide the wget progress bar
"""
2015-05-09 04:10:15 -07:00
import json
import logging
import os
import signal
import sys
import time
2015-05-09 04:10:15 -07:00
import warnings
import math
2016-02-07 17:12:43 -08:00
import shutil
import requests
2016-02-07 17:35:51 -08:00
import re
2015-01-19 13:11:55 -08:00
2015-05-09 04:10:15 -07:00
import configparser
import mutagen
from docopt import docopt
2016-02-07 17:12:43 -08:00
from clint.textui import progress
2014-11-12 08:00:27 -08:00
from scdl import __version__
from scdl import soundcloud, utils
2015-06-28 13:24:38 -07:00
logging.basicConfig(level=logging.INFO, format='%(message)s')
logging.getLogger('requests').setLevel(logging.WARNING)
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
2015-05-14 00:36:19 -07:00
logger.addFilter(utils.ColorizeFilter())
2015-05-09 06:35:18 -07:00
logger.newline = print
2015-01-14 08:55:14 -08:00
arguments = None
token = ''
2014-12-02 17:16:04 -08:00
path = ''
2014-11-16 09:19:42 -08:00
offset = 0
2015-04-28 06:47:17 -07:00
scdl_client_id = '95a4c0ef214f2a4a0852142807b54b35'
2015-01-19 13:11:55 -08:00
2014-10-22 10:29:56 -07:00
client = soundcloud.Client(client_id=scdl_client_id)
2014-10-12 15:16:18 -07:00
def main():
2014-11-16 09:19:42 -08:00
"""
Main function, call parse_url
"""
signal.signal(signal.SIGINT, signal_handler)
global offset
2015-01-14 08:55:14 -08:00
global arguments
2014-11-16 09:19:42 -08:00
# import conf file
get_config()
# Parse argument
2015-01-19 11:23:46 -08:00
arguments = docopt(__doc__, version=__version__)
2015-01-14 08:55:14 -08:00
2015-05-09 15:13:11 -07:00
if arguments['--debug']:
logger.level = logging.DEBUG
2015-05-09 15:13:11 -07:00
elif arguments['--error']:
logger.level = logging.ERROR
2015-01-14 08:55:14 -08:00
2015-05-09 15:13:11 -07:00
logger.info('Soundcloud Downloader')
logger.debug(arguments)
2015-05-09 15:13:11 -07:00
if arguments['-o'] is not None:
2014-11-16 09:19:42 -08:00
try:
2015-08-24 18:19:28 -07:00
offset = int(arguments['-o']) - 1
2014-11-16 09:19:42 -08:00
except:
2015-08-24 18:19:28 -07:00
logger.error('Offset should be an integer...')
2014-11-16 09:19:42 -08:00
sys.exit()
2015-08-24 18:19:28 -07:00
logger.debug('offset: %d', offset)
2014-11-16 09:19:42 -08:00
2015-05-09 15:13:11 -07:00
if arguments['--hidewarnings']:
warnings.filterwarnings('ignore')
2014-11-16 09:19:42 -08:00
2015-05-09 15:13:11 -07:00
if arguments['--path'] is not None:
if os.path.exists(arguments['--path']):
os.chdir(arguments['--path'])
2014-12-02 17:16:04 -08:00
else:
logger.error('Invalid path in arguments...')
2014-12-07 15:15:04 -08:00
sys.exit()
logger.debug('Downloading to '+os.getcwd()+'...')
2014-12-07 15:15:04 -08:00
logger.newline()
2015-05-09 15:13:11 -07:00
if arguments['-l']:
parse_url(arguments['-l'])
elif arguments['me']:
if arguments['-a']:
2014-11-16 09:19:42 -08:00
download_all_user_tracks(who_am_i())
2015-05-09 15:13:11 -07:00
elif arguments['-f']:
2015-05-14 01:03:47 -07:00
download_all_of_user(who_am_i(), 'favorite', download_track)
2015-05-09 15:13:11 -07:00
elif arguments['-t']:
2015-05-14 01:03:47 -07:00
download_all_of_user(who_am_i(), 'track', download_track)
2015-05-09 15:13:11 -07:00
elif arguments['-p']:
2015-05-14 01:03:47 -07:00
download_all_of_user(who_am_i(), 'playlist', download_playlist)
2014-10-22 10:29:56 -07:00
def get_config():
2014-11-16 09:19:42 -08:00
"""
read the path where to store music
"""
global token
config = configparser.ConfigParser()
config.read(os.path.join(os.path.expanduser('~'), '.config/scdl/scdl.cfg'))
try:
token = config['scdl']['auth_token']
path = config['scdl']['path']
except:
logger.error('Are you sure scdl.cfg is in $HOME/.config/scdl/ ?')
2014-11-16 09:19:42 -08:00
sys.exit()
if os.path.exists(path):
os.chdir(path)
else:
logger.error('Invalid path in scdl.cfg...')
2014-11-16 09:19:42 -08:00
sys.exit()
2014-10-23 08:22:58 -07:00
def get_item(track_url):
2014-11-16 09:19:42 -08:00
"""
Fetches metadata for an track or playlist
"""
try:
item = client.get('/resolve', url=track_url)
except Exception:
logger.error('Error resolving url, retrying...')
time.sleep(5)
try:
item = client.get('/resolve', url=track_url)
except Exception as e:
2015-05-09 15:13:11 -07:00
logger.error('Could not resolve url {0}'.format(track_url))
logger.exception(e)
sys.exit(0)
2014-11-16 09:19:42 -08:00
return item
2014-10-23 08:22:58 -07:00
def parse_url(track_url):
2014-11-16 09:19:42 -08:00
"""
Detects if the URL is a track or playlists, and parses the track(s) to the track downloader
"""
2015-01-14 08:55:14 -08:00
global arguments
2014-11-16 09:19:42 -08:00
item = get_item(track_url)
2015-01-05 14:22:14 -08:00
2014-11-16 09:19:42 -08:00
if not item:
return
2015-01-05 14:22:14 -08:00
elif isinstance(item, soundcloud.resource.ResourceList):
download_all(item)
2014-11-16 09:19:42 -08:00
elif item.kind == 'track':
2015-05-09 15:13:11 -07:00
logger.info('Found a track')
2016-02-07 16:04:16 -08:00
track = json.loads(item.raw_data)
logger.debug(track)
download_track(track)
2015-05-09 15:13:11 -07:00
elif item.kind == 'playlist':
logger.info('Found a playlist')
2014-11-16 09:19:42 -08:00
download_playlist(item)
elif item.kind == 'user':
logger.info('Found a user profile')
2015-05-09 15:13:11 -07:00
if arguments['-f']:
2015-05-14 01:03:47 -07:00
download_all_of_user(item, 'favorite', download_track)
2015-05-09 15:13:11 -07:00
elif arguments['-t']:
2015-05-14 01:03:47 -07:00
download_all_of_user(item, 'track', download_track)
2015-05-09 15:13:11 -07:00
elif arguments['-a']:
2014-11-16 09:19:42 -08:00
download_all_user_tracks(item)
2015-05-09 15:13:11 -07:00
elif arguments['-p']:
2015-05-14 01:03:47 -07:00
download_all_of_user(item, 'playlist', download_playlist)
2014-11-16 09:19:42 -08:00
else:
logger.error('Please provide a download type...')
2014-11-16 09:19:42 -08:00
else:
2015-05-09 15:13:11 -07:00
logger.error('Unknown item type')
2014-11-16 09:19:42 -08:00
2014-10-23 08:22:58 -07:00
2014-10-23 07:14:29 -07:00
def who_am_i():
2014-11-16 09:19:42 -08:00
"""
display to who the current token correspond, check if the token is valid
"""
global client
client = soundcloud.Client(access_token=token, client_id=scdl_client_id)
try:
current_user = client.get('/me')
except:
logger.error('Invalid token...')
2014-11-16 09:19:42 -08:00
sys.exit(0)
2015-05-09 15:13:11 -07:00
logger.info('Hello {0.username}!'.format(current_user))
logger.newline()
2014-11-16 09:19:42 -08:00
return current_user
2014-10-23 07:14:29 -07:00
2014-10-23 08:22:58 -07:00
def download_all_user_tracks(user):
2014-11-16 09:19:42 -08:00
"""
Find track & repost of the user
"""
global offset
2015-08-24 18:19:28 -07:00
resources = list()
2015-12-05 11:06:39 -08:00
start_offset = offset
2014-11-16 09:19:42 -08:00
2015-08-24 18:19:28 -07:00
logger.info('Retrieving all the track of user {0.username}...'.format(user))
2016-02-07 16:04:16 -08:00
url = 'https://api-v2.soundcloud.com/profile/soundcloud:users:{0.id}?limit=200&offset={1}'.format(
user, offset
)
while url:
2016-02-07 17:12:43 -08:00
url = '{0}&client_id={1}'.format(url, scdl_client_id)
2015-08-24 18:19:28 -07:00
logger.debug('url: ' + url)
2014-11-16 09:19:42 -08:00
2016-02-07 17:12:43 -08:00
response = requests.get(url)
json_data = response.json()
2015-08-24 18:19:28 -07:00
2016-01-31 05:15:45 -08:00
resources.extend(json_data['collection'])
2015-12-05 11:06:39 -08:00
url = json_data['next_href']
2015-08-24 18:19:28 -07:00
total = len(resources)
s = '' if total == 1 else 's'
logger.info('Retrieved {0} track{1}'.format(total, s))
for counter, item in enumerate(resources, 1):
try:
name = 'track' if item['type'] == 'track-repost' else item['type']
logger.info('{1} of {2} is a {0}'.format(name, counter + start_offset, total))
logger.debug(item[name])
parse_url(item[name]['uri'])
except Exception as e:
logger.exception(e)
logger.info('Downloaded all {2} {0}{1} of user {3.username}!'.format(name, s, total, user))
2014-11-16 09:19:42 -08:00
2014-10-22 10:29:56 -07:00
2015-05-14 01:03:47 -07:00
def download_all_of_user(user, name, download_function):
2014-11-16 09:19:42 -08:00
"""
Download all items of a user. Can be playlist or track, or whatever handled by the download function.
2014-11-16 09:19:42 -08:00
"""
2015-05-22 11:33:56 -07:00
logger.info('Retrieving the {1}s of user {0.username}...'.format(user, name))
2015-08-24 18:19:28 -07:00
items = client.get_all('/users/{0.id}/{1}s'.format(user, name), offset=offset)
2015-05-22 11:33:56 -07:00
total = len(items)
s = '' if total == 1 else 's'
logger.info('Retrieved {2} {0}{1}'.format(name, s, total))
2015-05-14 01:03:47 -07:00
for counter, item in enumerate(items, 1):
try:
2015-08-24 18:19:28 -07:00
logger.info('{0}{1} of {2}'.format(name.capitalize(), counter + offset, total))
2015-05-14 01:03:47 -07:00
download_function(item)
except Exception as e:
logger.exception(e)
2015-05-22 11:33:56 -07:00
logger.info('Downloaded all {2} {0}{1} of user {3.username}!'.format(name, s, total, user))
2014-11-16 09:19:42 -08:00
2014-10-12 15:16:18 -07:00
2014-10-23 08:22:58 -07:00
def download_my_stream():
2014-11-16 09:19:42 -08:00
"""
DONT WORK FOR NOW
Download the stream of the current user
"""
client = soundcloud.Client(access_token=token, client_id=scdl_client_id)
activities = client.get('/me/activities')
logger.debug(activities)
2014-10-23 08:22:58 -07:00
2014-10-23 07:14:29 -07:00
def download_playlist(playlist):
2014-11-16 09:19:42 -08:00
"""
Download a playlist
"""
2015-12-28 16:57:43 -08:00
global offset
2015-01-19 13:11:55 -08:00
invalid_chars = '\/:*?|<>"'
2016-02-08 05:01:13 -08:00
playlist_name = playlist['title'].encode('utf-8', 'ignore').decode('utf-8')
2015-01-19 13:11:55 -08:00
playlist_name = ''.join(c for c in playlist_name if c not in invalid_chars)
if not os.path.exists(playlist_name):
os.makedirs(playlist_name)
os.chdir(playlist_name)
with open(playlist_name + '.m3u', 'w+') as playlist_file:
playlist_file.write('#EXTM3U' + os.linesep)
2016-02-08 05:01:13 -08:00
for counter, track_raw in enumerate(playlist['tracks'], 1):
if offset > 0:
offset -= 1
continue
2016-02-07 17:12:43 -08:00
logger.debug(track_raw)
logger.info('Track n°{0}'.format(counter))
2016-02-08 05:01:13 -08:00
download_track(track_raw, playlist['title'], playlist_file)
2015-01-19 13:11:55 -08:00
os.chdir('..')
2014-11-16 09:19:42 -08:00
2014-10-23 07:14:29 -07:00
2015-01-05 14:22:14 -08:00
def download_all(tracks):
"""
Download all song of a page
Not recommended
"""
2015-05-09 15:13:11 -07:00
logger.error('NOTE: This will only download the songs of the page.(49 max)')
logger.error('I recommend you to provide a user link and a download type.')
2015-05-16 05:31:19 -07:00
for counter, track in enumerate(tracks, 1):
logger.newline()
2015-05-16 05:31:19 -07:00
logger.info('Track n°{0}'.format(counter))
2015-01-05 14:22:14 -08:00
download_track(track)
2015-04-08 14:51:08 -07:00
def alternative_download(track):
2015-08-20 11:11:32 -07:00
"""
Not sure if the url is sill correct...
"""
logger.debug('alternative_download used')
url = 'http://api.soundcloud.com/i1/tracks/{0.id}/streams?client_id=a3e059563d7fd3372b49b37f00a00bcf'.format(track)
2016-02-07 17:12:43 -08:00
r = requests.get(url)
json_data = r.json()
2015-04-08 14:51:08 -07:00
try:
mp3_url = json_data['http_mp3_128_url']
except KeyError:
logger.error('http_mp3_128_url not found in json response, report to developer.')
2015-04-08 14:51:08 -07:00
mp3_url = None
return mp3_url
def download_track(track, playlist_name=None, playlist_file=None):
2014-11-16 09:19:42 -08:00
"""
Downloads a track
"""
2015-01-14 08:55:14 -08:00
global arguments
2014-11-16 09:19:42 -08:00
2016-02-07 16:04:16 -08:00
if track['streamable']:
2015-04-08 14:51:08 -07:00
try:
2016-02-07 16:04:16 -08:00
stream_url = client.get(track['stream_url'], allow_redirects=False)
2015-04-08 14:51:08 -07:00
url = stream_url.location
2016-02-07 17:12:43 -08:00
except requests.exceptions.HTTPError:
2015-04-08 14:51:08 -07:00
url = alternative_download(track)
2014-11-16 09:19:42 -08:00
else:
2016-02-07 17:35:51 -08:00
title = track['title']
logger.error('{0} is not streamable...'.format(title))
logger.newline()
2014-11-16 09:19:42 -08:00
return
2016-02-07 16:04:16 -08:00
title = track['title']
2015-01-28 09:14:35 -08:00
title = title.encode('utf-8', 'ignore').decode(sys.stdout.encoding)
2015-05-09 15:13:11 -07:00
logger.info('Downloading {0}'.format(title))
2014-11-16 09:19:42 -08:00
2016-01-31 05:15:45 -08:00
# filename
2016-02-07 16:04:16 -08:00
if track['downloadable'] and not arguments['--onlymp3']:
logger.info('Downloading the orginal file.')
2016-02-07 16:04:16 -08:00
download_url = track['download_url']
url = '{0}?client_id={1}'.format(download_url, scdl_client_id)
2016-02-07 17:12:43 -08:00
r = requests.get(url, stream=True)
d = r.headers['content-disposition']
2016-02-07 17:35:51 -08:00
filename = re.findall("filename=(.+)", d)[0]
2014-11-16 09:19:42 -08:00
else:
2015-01-05 02:05:41 -08:00
invalid_chars = '\/:*?|<>"'
2016-02-07 16:04:16 -08:00
username = track['user']['username']
if username not in title and arguments['--addtofile']:
title = '{0} - {1}'.format(username, title)
2014-11-16 09:19:42 -08:00
title = ''.join(c for c in title if c not in invalid_chars)
filename = title + '.mp3'
2016-02-07 17:35:51 -08:00
logger.debug("filename : {0}".format(filename))
# Add the track to the generated m3u playlist file
if playlist_file:
2016-02-07 16:04:16 -08:00
duration = math.floor(track['duration'] / 1000)
playlist_file.write('#EXTINF:{0},{1}{3}{2}{3}'.format(duration, title, filename, os.linesep))
2014-11-16 09:19:42 -08:00
# Download
if not os.path.isfile(filename):
2016-02-07 17:12:43 -08:00
r = requests.get(url, stream=True)
with open(filename, 'wb') as f:
total_length = int(r.headers.get('content-length'))
for chunk in progress.bar(r.iter_content(chunk_size=1024), expected_size=(total_length/1024) + 1):
if chunk:
f.write(chunk)
f.flush()
logger.newline()
2014-11-16 09:19:42 -08:00
if '.mp3' in filename:
try:
2015-01-19 13:11:55 -08:00
if playlist_name is None:
settags(track, filename)
else:
settags(track, filename, playlist_name)
2016-02-07 16:04:16 -08:00
except Exception as e:
logger.error('Error trying to set the tags...')
2016-02-07 16:04:16 -08:00
logger.debug(e)
2014-11-16 09:19:42 -08:00
else:
2015-05-09 15:13:11 -07:00
logger.error("This type of audio doesn't support tagging...")
2014-11-16 09:19:42 -08:00
else:
2015-05-09 15:13:11 -07:00
if arguments['-c']:
logger.info('{0} already Downloaded'.format(title))
logger.newline()
2014-11-16 09:19:42 -08:00
return
else:
logger.newline()
2015-05-09 15:13:11 -07:00
logger.error('Music already exists ! (exiting)')
2014-11-16 09:19:42 -08:00
sys.exit(0)
logger.newline()
2015-05-09 15:13:11 -07:00
logger.info('{0} Downloaded.'.format(filename))
logger.newline()
2014-11-16 09:19:42 -08:00
2015-12-21 10:51:23 -08:00
def settags(track, filename, album=None):
2014-11-16 09:19:42 -08:00
"""
Set the tags to the mp3
"""
2015-05-09 15:13:11 -07:00
logger.info('Settings tags...')
2016-02-07 16:04:16 -08:00
user_id = track['user_id']
user = client.get('/users/{0}'.format(user_id), allow_redirects=False)
2014-11-16 09:19:42 -08:00
2016-02-07 16:04:16 -08:00
artwork_url = track['artwork_url']
2014-11-16 09:19:42 -08:00
if artwork_url is None:
artwork_url = user.avatar_url
artwork_url = artwork_url.replace('large', 't500x500')
2016-02-07 17:12:43 -08:00
response = requests.get(artwork_url, stream=True)
with open('/tmp/scdl.jpg', 'wb') as out_file:
shutil.copyfileobj(response.raw, out_file)
2014-11-16 09:19:42 -08:00
audio = mutagen.File(filename)
2016-02-07 16:04:16 -08:00
audio['TIT2'] = mutagen.id3.TIT2(encoding=3, text=track['title'])
2015-05-09 15:13:11 -07:00
audio['TPE1'] = mutagen.id3.TPE1(encoding=3, text=user.username)
2016-02-07 16:04:16 -08:00
audio['TCON'] = mutagen.id3.TCON(encoding=3, text=track['genre'])
2015-12-21 10:51:23 -08:00
if album is not None:
audio['TALB'] = mutagen.id3.TALB(encoding=3, text=album)
2014-11-16 09:19:42 -08:00
if artwork_url is not None:
2015-05-09 15:13:11 -07:00
audio['APIC'] = mutagen.id3.APIC(encoding=3, mime='image/jpeg', type=3, desc='Cover',
data=open('/tmp/scdl.jpg', 'rb').read())
2014-11-16 09:19:42 -08:00
else:
2015-05-09 15:13:11 -07:00
logger.error('Artwork can not be set.')
2014-11-16 09:19:42 -08:00
audio.save()
2014-10-23 07:14:29 -07:00
def signal_handler(signal, frame):
2014-11-16 09:19:42 -08:00
"""
handle keyboardinterrupt
"""
time.sleep(1)
for path in os.listdir():
if not os.path.isdir(path) and '.tmp' in path:
os.remove(path)
2014-11-16 09:19:42 -08:00
logger.newline()
logger.info('Good bye!')
2014-11-16 09:19:42 -08:00
sys.exit(0)
2014-10-12 15:16:18 -07:00
2015-05-09 15:13:11 -07:00
if __name__ == '__main__':
2014-11-16 09:19:42 -08:00
main()