streamio-ffmpeg 0.7.7 → 0.7.8

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.7.8 2011-04-04
2
+
3
+ * Fixed number of audio channels on files with 5.1 audio
4
+
1
5
  == 0.7.7 2011-02-01
2
6
 
3
7
  * Movies with starttime are now considered as having uncertain duration as its behavior is not consistent across formats
@@ -81,6 +81,7 @@ module FFMPEG
81
81
  return @audio_channels[/\d*/].to_i if @audio_channels["channels"]
82
82
  return 1 if @audio_channels["mono"]
83
83
  return 2 if @audio_channels["stereo"]
84
+ return 6 if @audio_channels["5.1"]
84
85
  end
85
86
 
86
87
  def frame_rate
@@ -1,3 +1,3 @@
1
1
  module FFMPEG
2
- VERSION = "0.7.7"
2
+ VERSION = "0.7.8"
3
3
  end
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: streamio-ffmpeg
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 7
8
- - 7
9
- version: 0.7.7
4
+ prerelease:
5
+ version: 0.7.8
10
6
  platform: ruby
11
7
  authors:
12
8
  - David Backeus
@@ -14,8 +10,7 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2011-02-01 00:00:00 +01:00
18
- default_executable:
13
+ date: 2011-04-04 00:00:00 Z
19
14
  dependencies:
20
15
  - !ruby/object:Gem::Dependency
21
16
  name: rspec
@@ -25,10 +20,6 @@ dependencies:
25
20
  requirements:
26
21
  - - ~>
27
22
  - !ruby/object:Gem::Version
28
- segments:
29
- - 2
30
- - 4
31
- - 0
32
23
  version: 2.4.0
33
24
  type: :development
34
25
  version_requirements: *id001
@@ -50,7 +41,6 @@ files:
50
41
  - README.rdoc
51
42
  - LICENSE
52
43
  - CHANGELOG
53
- has_rdoc: true
54
44
  homepage: http://github.com/streamio/streamio-ffmpeg
55
45
  licenses: []
56
46
 
@@ -64,23 +54,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
64
54
  requirements:
65
55
  - - ">="
66
56
  - !ruby/object:Gem::Version
67
- segments:
68
- - 0
69
57
  version: "0"
70
58
  required_rubygems_version: !ruby/object:Gem::Requirement
71
59
  none: false
72
60
  requirements:
73
61
  - - ">="
74
62
  - !ruby/object:Gem::Version
75
- segments:
76
- - 1
77
- - 3
78
- - 6
79
63
  version: 1.3.6
80
64
  requirements: []
81
65
 
82
66
  rubyforge_project:
83
- rubygems_version: 1.3.7
67
+ rubygems_version: 1.7.1
84
68
  signing_key:
85
69
  specification_version: 3
86
70
  summary: Reads metadata and transcodes movies.