68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# rewrite by above handler. Should turn faux "audio/soundcloud" URL into
# plain/longwinded MP3 streaming address.
#
# Would need more generalized processing of custom URL schemes. But so
# far only the reddit module uses them anyway.
#
class url_soundcloud(object):
module = __name__
# override action.play() with wrapper
def __init__(self, parent, *a, **kw):
conf.play[fmt] = "false / convert"
#conf.filter_walledgardens = False
action.handler[fmt] = sndcl_convert
|
|
|
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# rewrite by above handler. Should turn faux "audio/soundcloud" URL into
# plain/longwinded MP3 streaming address.
#
# Would need more generalized processing of custom URL schemes. But so
# far only the reddit module uses them anyway.
#
class url_soundcloud(object):
module = 'url_soundcloud'
# override action.play() with wrapper
def __init__(self, parent, *a, **kw):
conf.play[fmt] = "false / convert"
#conf.filter_walledgardens = False
action.handler[fmt] = sndcl_convert
|