使用ruby mp3info从外部站点读取mp3 ID3(无需加载整个文件)

时间:2012-03-16 12:04:20

标签: ruby mp3 id3

我有一个服务器上的文件列表,并且只想加载和解析每个文件中的ID3。

下面的代码加载整个文件,这显然在批处理时非常耗时。

require 'mp3info'
require 'open-uri'

uri = "http://blah.com/blah.mp3"

Mp3Info.open(open(uri)) do |mp3|
    puts mp3.tag.title   
    puts mp3.tag.artist   
    puts mp3.tag.album
    puts mp3.tag.tracknum
end

1 个答案:

答案 0 :(得分:8)

这个解决方案适用于id3v2(当前标准)。 ID3V1在文件开头没有元数据,因此在这些情况下它不起作用。

这将读取文件的前4096个字节,这是任意的。据我所知ID3 documentation,大小没有限制,但4kb就是我在库中停止解析错误的时候。

我能够构建一个简单的Dropbox音频播放器,可以在这里看到: soundstash.heroku.com

并在此处开源代码:github.com/miketucker/Dropbox-Audio-Player

require 'open-uri'
require 'stringio'
require 'net/http'
require 'uri'
require 'mp3info'

url = URI.parse('http://example.com/filename.mp3') # turn the string into a URI
http = Net::HTTP.new(url.host, url.port) 
req = Net::HTTP::Get.new(url.path) # init a request with the url
req.range = (0..4096) # limit the load to only 4096 bytes
res = http.request(req) # load the mp3 file
child = {} # prepare an empty array to store the metadata we grab
Mp3Info.open( StringIO.open(res.body) ) do |m|  #do the parsing
    child['title'] = m.tag.title 
    child['album'] = m.tag.album 
    child['artist'] = m.tag.artist
    child['length'] = m.length 
end