RubyGems:没有可以使用 mp3info 加载的此类文件

发布于 2024-10-09 11:30:16 字数 734 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

邮友 2024-10-16 11:30:16

尝试在不使用 sudo 的情况下运行 gem install ruby​​-mp3info

Try running gem install ruby-mp3info without the sudo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文