scottburton11-rvideo 0.9.5
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/History.txt +56 -0
- data/License.txt +20 -0
- data/README.txt +100 -0
- data/RULES +11 -0
- data/Rakefile +178 -0
- data/lib/rvideo.rb +22 -0
- data/lib/rvideo/errors.rb +24 -0
- data/lib/rvideo/float.rb +7 -0
- data/lib/rvideo/inspector.rb +558 -0
- data/lib/rvideo/tools/abstract_tool.rb +339 -0
- data/lib/rvideo/tools/ffmpeg.rb +208 -0
- data/lib/rvideo/tools/ffmpeg2theora.rb +42 -0
- data/lib/rvideo/tools/flvtool2.rb +50 -0
- data/lib/rvideo/tools/mencoder.rb +106 -0
- data/lib/rvideo/tools/mp4box.rb +21 -0
- data/lib/rvideo/tools/mp4creator.rb +35 -0
- data/lib/rvideo/tools/mplayer.rb +31 -0
- data/lib/rvideo/tools/yamdi.rb +44 -0
- data/lib/rvideo/transcoder.rb +138 -0
- data/lib/rvideo/version.rb +9 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: scottburton11-rvideo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jonathan Dahl
|
8
|
+
- Slantwise Design
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2007-09-27 00:00:00 -07:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: mime-types
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: "1.15"
|
25
|
+
version:
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: diff-lcs
|
28
|
+
type: :runtime
|
29
|
+
version_requirement:
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.1.2
|
35
|
+
version:
|
36
|
+
description: RVideo allows you to inspect and process video files.
|
37
|
+
email: info@slantwisedesign.com
|
38
|
+
executables: []
|
39
|
+
|
40
|
+
extensions: []
|
41
|
+
|
42
|
+
extra_rdoc_files: []
|
43
|
+
|
44
|
+
files:
|
45
|
+
- History.txt
|
46
|
+
- License.txt
|
47
|
+
- Rakefile
|
48
|
+
- README.txt
|
49
|
+
- RULES
|
50
|
+
- lib/rvideo/errors.rb
|
51
|
+
- lib/rvideo/float.rb
|
52
|
+
- lib/rvideo/inspector.rb
|
53
|
+
- lib/rvideo/tools/abstract_tool.rb
|
54
|
+
- lib/rvideo/tools/ffmpeg.rb
|
55
|
+
- lib/rvideo/tools/ffmpeg2theora.rb
|
56
|
+
- lib/rvideo/tools/flvtool2.rb
|
57
|
+
- lib/rvideo/tools/mencoder.rb
|
58
|
+
- lib/rvideo/tools/mp4box.rb
|
59
|
+
- lib/rvideo/tools/mp4creator.rb
|
60
|
+
- lib/rvideo/tools/mplayer.rb
|
61
|
+
- lib/rvideo/tools/yamdi.rb
|
62
|
+
- lib/rvideo/transcoder.rb
|
63
|
+
- lib/rvideo/version.rb
|
64
|
+
- lib/rvideo.rb
|
65
|
+
has_rdoc: true
|
66
|
+
homepage: http://github.com/scottburton11/rvideo
|
67
|
+
licenses:
|
68
|
+
post_install_message:
|
69
|
+
rdoc_options:
|
70
|
+
- --inline-source
|
71
|
+
- --charset=UTF-8
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: "0"
|
79
|
+
version:
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: "0"
|
85
|
+
version:
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project: rvideo
|
89
|
+
rubygems_version: 1.3.5
|
90
|
+
signing_key:
|
91
|
+
specification_version: 2
|
92
|
+
summary: RVideo allows you to inspect and process video files. This version has local modifications.
|
93
|
+
test_files: []
|
94
|
+
|