RubyGems:没有可以使用 mp3info 加载的此类文件
我正在尝试使用 ruby-mp3info 和我的 test.rb 读取 mp3 文件的持续时间文件当前看起来像这样:
require "rubygems"
require "mp3info"
# read and display infos & tags
Mp3Info.open("audiofile.mp3") do |mp3info|
puts mp3info
end
但是,当我运行 ruby test.rb 时,我收到错误:
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- mp3info (LoadError)
我在运行 Snow Leopard 的 Mac 上,以及运行 sudo gem install ruby-mp3info 的其他计算机上 这是一个非常基本的安装。 id3lib-ruby 看起来是一个可能的替代方案,但是 Mac 安装似乎有点复杂。
有没有一种简单的方法来修复 mp3info 安装或以其他方式获取 mp3 文件的持续时间?
谢谢! 彼得
I'm trying to read the duration out of an mp3 file using ruby-mp3info and my test.rb file currently looks like this:
require "rubygems"
require "mp3info"
# read and display infos & tags
Mp3Info.open("audiofile.mp3") do |mp3info|
puts mp3info
end
However, when I run ruby test.rb
I get the error:
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- mp3info (LoadError)
I'm on a Mac running Snow Leopard, and other that running sudo gem install ruby-mp3info
this is a pretty basic install. id3lib-ruby looks like a possible alternative, however the Mac install seems a bit more involved.
Is there an easy way to fix the mp3info install or otherwise get the duration of an mp3 file?
Thanks!
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在不使用 sudo 的情况下运行
gem install ruby-mp3info
。Try running
gem install ruby-mp3info
without the sudo.