]> git.sesse.net Git - vlc/blob - share/lua/playlist/soundcloud.lua
bpg: add libbpg decoder
[vlc] / share / lua / playlist / soundcloud.lua
1 --[[
2  $Id$
3
4  Copyright © 2012 the VideoLAN team
5
6  Authors: Cheng Sun <chengsun9atgmail.com>
7
8  This program is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 --]]
22
23 -- Probe function.
24 function probe()
25     return ( vlc.access == "http" or vlc.access == "https" )
26         and string.match( vlc.path, "soundcloud%.com/.+/.+" )
27 end
28
29 -- Parse function.
30 function parse()
31     if string.match ( vlc.path, "soundcloud%.com" ) then
32         arturl = nil
33         while true do
34             line = vlc.readline()
35             if not line then break end
36             if string.match( line, "window%.SC%.bufferTracks%.push" ) then
37                 -- all the data is nicely stored on this one line
38                 _,_,uid,token,name = string.find (line,
39                         "window%.SC%.bufferTracks%.push.*" ..
40                         "\"uid\":\"([^\"]*)\".*" ..
41                         "\"token\":\"([^\"]*)\".*" ..
42                         "\"title\":\"([^\"]*)\"")
43                 -- we only want the first one of these lines
44                 break
45             end
46             -- try to get the art url
47             if string.match( line, "artwork--download--link" ) then
48                 _,_,arturl = string.find( line, " href=\"(.*)\" " )
49             end
50         end
51         path = "http://media.soundcloud.com/stream/"..uid.."?stream_token="..token
52         return { { path = path; name = name; arturl = arturl } }
53     end
54     return {}
55 end