rvideo 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +13 -0
- data/Manifest.txt +3 -0
- data/Rakefile +32 -11
- data/lib/rvideo.rb +2 -4
- data/lib/rvideo/float.rb +7 -0
- data/lib/rvideo/tools/abstract_tool.rb +5 -5
- data/lib/rvideo/tools/ffmpeg.rb +19 -2
- data/lib/rvideo/tools/mencoder.rb +65 -0
- data/lib/rvideo/transcoder.rb +8 -4
- data/lib/rvideo/version.rb +1 -1
- data/spec/fixtures/recipes.yml +52 -1
- data/spec/units/mencoder_spec.rb +4986 -0
- data/spec/units/transcoder_spec.rb +1 -1
- data/website/index.html +2 -2
- metadata +5 -2
@@ -133,7 +133,7 @@ module RVideo
|
|
133
133
|
[String, 1, 1.0, true, nil, :foo].each do |obj|
|
134
134
|
lambda {
|
135
135
|
@transcoder.execute(obj)
|
136
|
-
}.should raise_error(ArgumentError, /first argument must
|
136
|
+
}.should raise_error(ArgumentError, /first argument must/)
|
137
137
|
end
|
138
138
|
end
|
139
139
|
end
|
data/website/index.html
CHANGED
@@ -35,7 +35,7 @@
|
|
35
35
|
<h1>Ruby Video Processing</h1>
|
36
36
|
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rvideo"; return false'>
|
37
37
|
<p>Get Version</p>
|
38
|
-
<a href="http://rubyforge.org/projects/rvideo" class="numbers">0.9.
|
38
|
+
<a href="http://rubyforge.org/projects/rvideo" class="numbers">0.9.1</a>
|
39
39
|
</div>
|
40
40
|
<h1>→ ‘rvideo’</h1>
|
41
41
|
|
@@ -208,7 +208,7 @@ do.</p>
|
|
208
208
|
|
209
209
|
<p>Comments are welcome. Send an email to Jonathan Dahl at jon [at] slantwisedesign.</p>
|
210
210
|
<p class="coda">
|
211
|
-
Page created with newgem by <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>,
|
211
|
+
Page created with newgem by <a href="mailto:drnicwilliams@gmail.com">Dr Nic</a>, 11th October 2007<br>
|
212
212
|
Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
|
213
213
|
</p>
|
214
214
|
</div>
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rvideo
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.9.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.9.1
|
7
|
+
date: 2007-10-11 00:00:00 -05:00
|
8
8
|
summary: Inspect and process video or audio files
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -40,6 +40,7 @@ files:
|
|
40
40
|
- config/boot.rb
|
41
41
|
- lib/rvideo.rb
|
42
42
|
- lib/rvideo/errors.rb
|
43
|
+
- lib/rvideo/float.rb
|
43
44
|
- lib/rvideo/inspector.rb
|
44
45
|
- lib/rvideo/reporter.rb
|
45
46
|
- lib/rvideo/reporter/views/index.html.erb
|
@@ -49,6 +50,7 @@ files:
|
|
49
50
|
- lib/rvideo/tools/abstract_tool.rb
|
50
51
|
- lib/rvideo/tools/ffmpeg.rb
|
51
52
|
- lib/rvideo/tools/flvtool2.rb
|
53
|
+
- lib/rvideo/tools/mencoder.rb
|
52
54
|
- lib/rvideo/transcoder.rb
|
53
55
|
- lib/rvideo/version.rb
|
54
56
|
- scripts/txt2html
|
@@ -69,6 +71,7 @@ files:
|
|
69
71
|
- spec/units/ffmpeg_spec.rb
|
70
72
|
- spec/units/flvtool2_spec.rb
|
71
73
|
- spec/units/inspector_spec.rb
|
74
|
+
- spec/units/mencoder_spec.rb
|
72
75
|
- spec/units/transcoder_spec.rb
|
73
76
|
- website/index.html
|
74
77
|
- website/index.txt
|