当前位置:  编程技术>python

python中使用百度音乐搜索的api下载指定歌曲的lrc歌词

    来源: 互联网  发布时间:2014-10-09

    本文导语:  这次这个真的是干货哦,昨晚弄了半晚上,,,,从8点吃完饭就开始写,一直到了快12点才弄好,,,新手,伤不起呀。。。。 先简单的说下吧,百度提供了一个音乐搜索的api,你想百度请求类似于 http://box.zhangmen.baidu.com/x...

这次这个真的是干货哦,昨晚弄了半晚上,,,,从8点吃完饭就开始写,一直到了快12点才弄好,,,新手,伤不起呀。。。。
先简单的说下吧,百度提供了一个音乐搜索的api,你想百度请求类似于

http://box.zhangmen.baidu.com/x?op=12&count=1&title=最佳损友$$陈奕迅$$$$

的地址,百度会给你返回一段xml,如下所示

This XML file does not appear to have any style information associated with it. The document tree is shown below.

1







8
2829
1








8
2829
1


f98b6772aa97966550ec80617879becee0233bf4



mp3
3778335
128

简单的说明下,由于我们要做的只是获取到歌曲的lrc歌词地址,所以有用的只有2829这个标签。
而encode和decode里面的拼接起来就是mp3的下载地址,如本例的

http://zhangmenshiting.baidu.com/data2/music/12762845/YmRqamdua21fn6NndK6ap5WXcJlrmG1xlJhobWibmGpjk5ZtmWiZcWRjZ5lqbGyelGKWlZtubGljZ5lka2uanWSXY1qin5t1YWBmZW5ocGlhaWdnbGtqbzE$12762845.mp3?xcode=e6b69cf593ea22ac9d2b9314e565fc0caf85125f065ce3e0&mid=0.31929107437537

就是下载地址,不过音质太差,有时间在研究下这个。
继续说歌词,注意lrcid标签里面的2829
http://box.zhangmen.baidu.com/bdlrc/ 这个是百度lrc歌词存放地址,
然后本例的歌词地址是http://box.zhangmen.baidu.com/bdlrc/28/2829.lrc
看到了吧,歌词地址后面的两个数字的计算方法是在lrcid除以100所获得的整数,就是第一个数字,然后第二个数字就是lrcid,然后后面加上后缀.lrc就搞定了
获得lrc地址之后就简单了,只要请求该地址,然后将获取到的内容写入文件就ok了。
好了,大概就是这样,下面是代码:

import os
import os.path
import re
import eyed3
import urllib2
import urllib
from urllib import urlencode
import sys
 
import os
reload(sys)
sys.setdefaultencoding('utf8')
 
music_path = r"E:music"
lrc_path = r"e:lrc"
 
os.remove('nolrc.txt')
os.remove('lrcxml.txt')
 
the_file = open('lrcxml.txt','a')
nolrc_file = open('nolrc.txt','a')
 
for root,dirs,files in os.walk(music_path):
 for filepath in files:
  the_path = os.path.join(root,filepath)
  if (the_path.find("mp3") != -1):
   print the_path
   the_music = eyed3.load(the_path)
   the_teg = the_music.tag._getAlbum()
   the_artist = the_music.tag._getArtist()
   the_title = the_music.tag._getTitle()
   # print the_teg
   # print the_title
   # print the_artist
   b = the_title.replace(' ','+')
   # print b
   a = the_artist.replace(' ','+')
   #print urlencode(str(b))
   if isinstance(a,unicode):
    a = a.encode('utf8')
   song_url = "http://box.zhangmen.baidu.com/x?op=12&count=1&title="+b+"$$"+a+"$$$$ "
   
   the_file.write(song_url+'n')
   page = urllib2.urlopen(song_url).read()
   print page
   theid = 0
    
   lrcid = re.compile('(.*?)',re.S).findall(page)
   have_lrc = True
   if lrcid != []:
    theid = lrcid[0]
     
   else:
    nolrc_file.write(the_title+'n')
    have_lrc = False
   print theid
    
    
   if have_lrc:
    firstid = int(theid)/100
    lrcurl = "http://box.zhangmen.baidu.com/bdlrc/"+str(firstid)+"/"+theid+".lrc"
    print lrcurl
    lrc = urllib2.urlopen(lrcurl).read()
    if(lrc.find('html')== -1):
     lrcfile = open(lrc_path+"\"+the_title+".lrc",'w')
     lrcfile.writelines(lrc)
     lrcfile.close()
    else:
     nolrc_file.write(the_title+'n')
     
the_file.close()
nolrc_file.close()
print "end!"

有用第一步请求所获取到底是xml格式的,所以本来想着解析xml来获取lrcid,但是在实现过程中遇到了各种问题,别的还容易,就在这一块儿浪费的时间最长,纠结未果之后,只能改用正则表达式来获取了。。。只能说明还是学艺不精呢,


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Python不使用print而直接输出二进制字符串
  • 使用setup.py安装python包和卸载python包的方法
  • Python namedtuple(命名元组)使用实例
  • python基础教程之python消息摘要算法使用示例
  • 如何使用linux下gdb来调试python程序
  • 使用python删除nginx缓存文件示例(python文件操作)
  • 在Python3中使用urllib实现http的get和post提交数据操作
  • pycharm 使用心得(九)解决No Python interpreter selected的问题
  • 在Python中使用SWIG调用C和C++程序
  • linux系统使用python获取内存使用信息脚本分享
  • juqery的python实现:pyquery学习使用教程
  • 使用python Django做网页
  • numpy官方下载安装以及numpy详细使用教程(Python科学计算)
  • Python开发的单词频率统计工具wordsworth使用方法
  • python文件读写并使用mysql批量插入示例分享(python操作mysql)
  • Python数组条件过滤filter函数使用示例
  • python使用循环实现批量创建文件夹示例
  • Python pass 语句使用示例
  • 在python中的socket模块使用代理实例
  • python回调函数的使用方法
  • linux系统使用python监控apache服务器进程脚本分享
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • 让python同时兼容python2和python3的8个技巧分享
  • Python中实现json字符串和dict类型的互转
  • 不小心把linux自带的python卸载了,导致安装一个依赖原python的软件不能安装,请问该怎么办?
  • python异常信息堆栈输出到日志文件
  • Python开发者社区整站源码 Pythoner
  • python下用os.execl执行centos下的系统时间同步命令ntpdate
  • python读取csv文件示例(python操作csv)
  • Python namedtuple对象json序列化/反序列化及对象恢复
  • 新手该如何学python怎么学好python?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3