1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# api: streamtuner2
# title: Soundcloud streams
# description: Convert soundcloud links from reddit to streamable tracks
# version: 0.1
# type: filter
# category: audio
# depends: python:soundcloud, action >= 1.0, reddit >= 0.6
# priority: rare
#
# Overrides action.play() function to convert soundcloud URLs
# to track/streaming address. Disables the reddit filter for
# walled gardens, and overrides any custom player configured
# for "audio/soundcloud" in settings.
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# api: streamtuner2
# title: Soundcloud streams
# description: Convert soundcloud links from reddit to streamable tracks
# version: 0.2
# type: filter
# category: audio
# depends: python:soundcloud, action >= 1.1, reddit >= 0.8
# priority: rare
#
# Overrides action.play() function to convert soundcloud URLs
# to track/streaming address. Disables the reddit filter for
# walled gardens, and overrides any custom player configured
# for "audio/soundcloud" in settings.
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Capture play events for faux MIME type
def sndcl_convert(row={}, audioformat="audio/mpeg", source="pls", assoc={}):
if audioformat==fmt or rx_url.match(url):
# find streaming address
try:
log.DATA_CONVERT_SOUNDCLOUD(url)
track = client().get('/resolve', url=url)
track_str = "/tracks/{}/stream".format(track.id)
url = client().get(track_str, allow_redirects=False).location
# override attributes
row["url"] = url
|
>
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Capture play events for faux MIME type
def sndcl_convert(row={}, audioformat="audio/mpeg", source="pls", assoc={}):
if audioformat==fmt or rx_url.match(url):
# find streaming address
try:
url = row["url"]
log.DATA_CONVERT_SOUNDCLOUD(url)
track = client().get('/resolve', url=url)
track_str = "/tracks/{}/stream".format(track.id)
url = client().get(track_str, allow_redirects=False).location
# override attributes
row["url"] = url
|