rvideo 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ENV +100 -0
- data/ENV2 +129 -0
- data/History.txt +3 -0
- data/License.txt +20 -0
- data/Manifest.txt +44 -0
- data/README.txt +91 -0
- data/RULES +11 -0
- data/Rakefile +163 -0
- data/config/boot.rb +16 -0
- data/lib/rvideo.rb +19 -0
- data/lib/rvideo/errors.rb +21 -0
- data/lib/rvideo/inspector.rb +486 -0
- data/lib/rvideo/reporter.rb +176 -0
- data/lib/rvideo/reporter/views/index.html.erb +27 -0
- data/lib/rvideo/reporter/views/report.css +27 -0
- data/lib/rvideo/reporter/views/report.html.erb +81 -0
- data/lib/rvideo/reporter/views/report.js +9 -0
- data/lib/rvideo/tools/abstract_tool.rb +79 -0
- data/lib/rvideo/tools/ffmpeg.rb +111 -0
- data/lib/rvideo/tools/flvtool2.rb +45 -0
- data/lib/rvideo/transcoder.rb +113 -0
- data/lib/rvideo/version.rb +9 -0
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- data/spec/files/kites.mp4 +0 -0
- data/spec/fixtures/ffmpeg_builds.yml +28 -0
- data/spec/fixtures/files.yml +374 -0
- data/spec/fixtures/recipes.yml +6 -0
- data/spec/integrations/files/files.yml +361 -0
- data/spec/integrations/formats_spec.rb +287 -0
- data/spec/integrations/inspection_spec.rb +15 -0
- data/spec/integrations/recipes_spec.rb +0 -0
- data/spec/integrations/rvideo_spec.rb +17 -0
- data/spec/integrations/transcoding_spec.rb +9 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/units/abstract_tool_spec.rb +112 -0
- data/spec/units/ffmpeg_spec.rb +703 -0
- data/spec/units/flvtool2_spec.rb +314 -0
- data/spec/units/inspector_spec.rb +41 -0
- data/spec/units/transcoder_spec.rb +140 -0
- data/website/index.html +219 -0
- data/website/index.txt +142 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: rvideo
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.8.0
|
7
|
+
date: 2007-09-27 00:00:00 -05:00
|
8
|
+
summary: Video transcoding library
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: jon@slantwisedesign.com
|
12
|
+
homepage: http://rvideo.rubyforge.org
|
13
|
+
rubyforge_project: rvideo
|
14
|
+
description: Video transcoding library
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Jonathan Dahl (Slantwise Design)
|
31
|
+
files:
|
32
|
+
- ENV
|
33
|
+
- ENV2
|
34
|
+
- History.txt
|
35
|
+
- License.txt
|
36
|
+
- Manifest.txt
|
37
|
+
- README.txt
|
38
|
+
- RULES
|
39
|
+
- Rakefile
|
40
|
+
- config/boot.rb
|
41
|
+
- lib/rvideo.rb
|
42
|
+
- lib/rvideo/errors.rb
|
43
|
+
- lib/rvideo/inspector.rb
|
44
|
+
- lib/rvideo/reporter.rb
|
45
|
+
- lib/rvideo/reporter/views/index.html.erb
|
46
|
+
- lib/rvideo/reporter/views/report.css
|
47
|
+
- lib/rvideo/reporter/views/report.html.erb
|
48
|
+
- lib/rvideo/reporter/views/report.js
|
49
|
+
- lib/rvideo/tools/abstract_tool.rb
|
50
|
+
- lib/rvideo/tools/ffmpeg.rb
|
51
|
+
- lib/rvideo/tools/flvtool2.rb
|
52
|
+
- lib/rvideo/transcoder.rb
|
53
|
+
- lib/rvideo/version.rb
|
54
|
+
- scripts/txt2html
|
55
|
+
- setup.rb
|
56
|
+
- spec/files/kites.mp4
|
57
|
+
- spec/fixtures/ffmpeg_builds.yml
|
58
|
+
- spec/fixtures/files.yml
|
59
|
+
- spec/fixtures/recipes.yml
|
60
|
+
- spec/integrations/files/files.yml
|
61
|
+
- spec/integrations/formats_spec.rb
|
62
|
+
- spec/integrations/inspection_spec.rb
|
63
|
+
- spec/integrations/recipes_spec.rb
|
64
|
+
- spec/integrations/rvideo_spec.rb
|
65
|
+
- spec/integrations/transcoding_spec.rb
|
66
|
+
- spec/spec.opts
|
67
|
+
- spec/spec_helper.rb
|
68
|
+
- spec/units/abstract_tool_spec.rb
|
69
|
+
- spec/units/ffmpeg_spec.rb
|
70
|
+
- spec/units/flvtool2_spec.rb
|
71
|
+
- spec/units/inspector_spec.rb
|
72
|
+
- spec/units/transcoder_spec.rb
|
73
|
+
- website/index.html
|
74
|
+
- website/index.txt
|
75
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
76
|
+
test_files: []
|
77
|
+
|
78
|
+
rdoc_options:
|
79
|
+
- --main
|
80
|
+
- README.txt
|
81
|
+
extra_rdoc_files:
|
82
|
+
- History.txt
|
83
|
+
- License.txt
|
84
|
+
- Manifest.txt
|
85
|
+
- README.txt
|
86
|
+
- website/index.txt
|
87
|
+
executables: []
|
88
|
+
|
89
|
+
extensions: []
|
90
|
+
|
91
|
+
requirements: []
|
92
|
+
|
93
|
+
dependencies: []
|
94
|
+
|