主页 > 知识库 > Lua脚本获取喜马拉雅MP3音频地址

Lua脚本获取喜马拉雅MP3音频地址

热门标签:清朝地图标注哈尔滨 地图标注大厦 怎么去除地图标注 新岸线智能电销机器人 百度地图标注早餐区域 冀州市地图标注 漳州智云呼电话机器人 个人怎么在地图标注需要的店铺 武汉外呼防封系统多少钱

参考此文:https://www.jb51.net/softjc/314839.html

在Linux下可以直接运行

#!/usr/bin/lua5.1
--需要luacurl http://luacurl.luaforge.net/
--luajson https://github.com/mbalmer/luajson
require("luacurl")
require('json')


function get_html(url, c)
  local result = { }
  if c == nil then
    c = curl.new()
  end
  c:setopt(curl.OPT_URL, url)
  c:setopt(curl.OPT_WRITEDATA, result)
  c:setopt(curl.OPT_WRITEFUNCTION, function(tab, buffer)   --call back函数,必须有
    table.insert(tab, buffer)           --tab参数即为result,参考http://luacurl.luaforge.net/

    return #buffer
  end)
  local ok = c:perform()
  return ok, table.concat(result)       --此table非上一个table,作用域不同
end


function downMp3(id)
  
  local url="http://www.ximalaya.com/tracks/"..id..".json"
  local mp3 = "http://fdfs.xmcdn.com/"
  local ok,html = get_html(url)
  if ok then
    local result = json.decode(html)
    print(mp3..result.play_path_64)
  else
    print("error")
  end
end
if arg[1] and tonumber(arg[1]) then
  downMp3(arg[1])
else
  print("请输入编号")
end

标签:儋州 天门 金昌 德宏 宣城 天门 台湾 潍坊

巨人网络通讯声明:本文标题《Lua脚本获取喜马拉雅MP3音频地址》,本文关键词  Lua,脚本,获取,喜马拉雅,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《Lua脚本获取喜马拉雅MP3音频地址》相关的同类信息!
  • 本页收集关于Lua脚本获取喜马拉雅MP3音频地址的相关信息资讯供网民参考!
  • 推荐文章