ffprober 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 52524bb1936e412745ceae6252c36059b7c2f215
4
- data.tar.gz: 735baaa9d402e0a208fd88b7d7de96693c59d33f
3
+ metadata.gz: 8b8771b329294ddc52d0c606d5d1e29ecb3d7738
4
+ data.tar.gz: e73d9062d7c4a377ba3a04859a6a69618cb83fce
5
5
  SHA512:
6
- metadata.gz: 6034b90491640318998a4e5bea54164b084931b056b1d199a265f5b58b3cebf64c9d6331d3e5e1960f5e5933425d0d61841b802a2de7dfa5b53e7845ea13b440
7
- data.tar.gz: 35d6af68805015807f5d3eaab2463e21e9dd0a6b2385a23493c60d46a312d883882312baad9193368f7e613d4520045a0c8dd2cbbf4272718d1344178a9ca62d
6
+ metadata.gz: ce16be25a1f48cc1cae23e05f9e9a782a8fa1516590ffe3c7bffd7d1a845ab658b7d1d294fc142a4d7442c5d8a55d7151a777ada1063a191bd1a186135692989
7
+ data.tar.gz: 042dbfdcb5f8c909ec8cb5c1f64e75b37940b0dd208c18c0a65e64ae339cd4e6050629eaa738f3d4f2a73b033f4bb829c64b6c6b59c688ffac3b833a3e5cb95e
data/Changes.md CHANGED
@@ -1,4 +1,16 @@
1
- unrelaesed
1
+ 0.3.3
2
+ -----------
3
+ support for ffmpeg 2.0
4
+
5
+ 0.3.2
6
+ -----------
7
+ detect git-based installs of ffmpeg
8
+
9
+ 0.3.1
10
+ -----------
11
+ fixed version output call
12
+
13
+ 0.3.0
2
14
  -----------
3
15
  - correctly detect ffprobe path on windows
4
16
  - correctly detect avprobe
@@ -4,7 +4,7 @@ module Ffprober
4
4
  @@nightly_regex = /^(ffprobe|avprobe|ffmpeg) version (N|git)-/
5
5
 
6
6
  MIN_VERSION = Gem::Version.new("0.9.0")
7
- MAX_VERSION = Gem::Version.new("1.2.1")
7
+ MAX_VERSION = Gem::Version.new("2.0")
8
8
 
9
9
  def self.valid?
10
10
  self.new.valid?
@@ -1,3 +1,3 @@
1
1
  module Ffprober
2
- VERSION = "0.3.2"
2
+ VERSION = "0.3.3"
3
3
  end
@@ -0,0 +1,12 @@
1
+ ffprobe version 2.0
2
+ built on Jul 12 2013 11:15:38 with gcc 4.2.1 (GCC) (Apple Inc. build 5666) (dot 3)
3
+ configuration: --prefix=/usr/local/Cellar/ffmpeg/2.0 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample --enable-vda --cc=/usr/bin/gcc-4.2 --host-cflags='-Os -w -pipe -march=core2 -msse4.1 -mmacosx-version-min=10.6' --host-ldflags=-L/usr/local/lib --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-aacenc
4
+ libavutil 52. 38.100 / 52. 38.100
5
+ libavcodec 55. 18.102 / 55. 18.102
6
+ libavformat 55. 12.100 / 55. 12.100
7
+ libavdevice 55. 3.100 / 55. 3.100
8
+ libavfilter 3. 79.101 / 3. 79.101
9
+ libavresample 1. 1. 0 / 1. 1. 0
10
+ libswscale 2. 3.100 / 2. 3.100
11
+ libswresample 0. 17.102 / 0. 17.102
12
+ libpostproc 52. 3.100 / 52. 3.100
@@ -6,8 +6,9 @@ describe Ffprober::FfprobeVersion do
6
6
  { version: "0.9.0", pass: true },
7
7
  { version: "1.0.0", pass: true },
8
8
  { version: "1.1.0", pass: true },
9
- { version: "1.9.0", pass: false },
10
- { version: "1.2.1", pass: true }
9
+ { version: "2.9.0", pass: false },
10
+ { version: "1.2.1", pass: true },
11
+ { version: "2.0", pass: true}
11
12
  ]
12
13
 
13
14
  context 'validates the ffprobe version' do
@@ -8,7 +8,7 @@ describe Ffprober do
8
8
  Ffprober.stub(:path).and_return("nonexistant")
9
9
  expect {
10
10
  @ffprobe = Ffprober::Parser.from_file('spec/assets/301-extracting_a_ruby_gem.m4v')
11
- }.to raise_error(Errno::ENOENT)
11
+ }.to raise_error
12
12
  end
13
13
 
14
14
  it "should raise a exception if there is no valid ffmpeg" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffprober
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - beanieboi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-26 00:00:00.000000000 Z
11
+ date: 2013-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -69,6 +69,7 @@ files:
69
69
  - spec/assets/version_outputs/linux-nightly
70
70
  - spec/assets/version_outputs/osx-1_0
71
71
  - spec/assets/version_outputs/osx-1_2_0
72
+ - spec/assets/version_outputs/osx-2_0
72
73
  - spec/assets/version_outputs/raspian-0_8_6
73
74
  - spec/assets/version_outputs/ubuntu-0_10_6
74
75
  - spec/assets/version_outputs/windows-nightly
@@ -107,6 +108,7 @@ test_files:
107
108
  - spec/assets/version_outputs/linux-nightly
108
109
  - spec/assets/version_outputs/osx-1_0
109
110
  - spec/assets/version_outputs/osx-1_2_0
111
+ - spec/assets/version_outputs/osx-2_0
110
112
  - spec/assets/version_outputs/raspian-0_8_6
111
113
  - spec/assets/version_outputs/ubuntu-0_10_6
112
114
  - spec/assets/version_outputs/windows-nightly