├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── History.txt ├── LICENSE ├── README.md ├── Rakefile ├── bin └── console ├── codecov.yml ├── lib ├── audioinfo.rb └── audioinfo │ ├── album.rb │ ├── case_insensitive_hash.rb │ ├── mpcinfo.rb │ └── version.rb ├── ruby-audioinfo.gemspec └── test ├── case_insensitive_hash_test.rb ├── flac_test.rb ├── m4a_test.rb ├── support ├── 440Hz-5sec.flac ├── cantina_band.m4a └── piano2.wav ├── test_helper.rb └── wav_test.rb /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/History.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/bin/console -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /lib/audioinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/lib/audioinfo.rb -------------------------------------------------------------------------------- /lib/audioinfo/album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/lib/audioinfo/album.rb -------------------------------------------------------------------------------- /lib/audioinfo/case_insensitive_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/lib/audioinfo/case_insensitive_hash.rb -------------------------------------------------------------------------------- /lib/audioinfo/mpcinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/lib/audioinfo/mpcinfo.rb -------------------------------------------------------------------------------- /lib/audioinfo/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class AudioInfo 4 | VERSION = '0.5.5' 5 | end 6 | -------------------------------------------------------------------------------- /ruby-audioinfo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/ruby-audioinfo.gemspec -------------------------------------------------------------------------------- /test/case_insensitive_hash_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/case_insensitive_hash_test.rb -------------------------------------------------------------------------------- /test/flac_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/flac_test.rb -------------------------------------------------------------------------------- /test/m4a_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/m4a_test.rb -------------------------------------------------------------------------------- /test/support/440Hz-5sec.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/support/440Hz-5sec.flac -------------------------------------------------------------------------------- /test/support/cantina_band.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/support/cantina_band.m4a -------------------------------------------------------------------------------- /test/support/piano2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/support/piano2.wav -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/wav_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moumar/ruby-audioinfo/HEAD/test/wav_test.rb --------------------------------------------------------------------------------