rmov 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -0
- data/Manifest +5 -5
- data/README.rdoc +9 -0
- data/Rakefile +1 -1
- data/ext/extconf.rb +4 -3
- data/rmov.gemspec +5 -5
- metadata +11 -11
data/CHANGELOG
CHANGED
data/Manifest
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
CHANGELOG
|
2
|
+
LICENSE
|
3
|
+
Manifest
|
4
|
+
README.rdoc
|
5
|
+
Rakefile
|
6
|
+
TODO
|
2
7
|
ext/exporter.c
|
3
8
|
ext/extconf.rb
|
4
9
|
ext/movie.c
|
@@ -9,10 +14,6 @@ lib/quicktime/exporter.rb
|
|
9
14
|
lib/quicktime/movie.rb
|
10
15
|
lib/quicktime/track.rb
|
11
16
|
lib/rmov.rb
|
12
|
-
LICENSE
|
13
|
-
Manifest
|
14
|
-
Rakefile
|
15
|
-
README.rdoc
|
16
17
|
spec/fixtures/dot.png
|
17
18
|
spec/fixtures/settings.st
|
18
19
|
spec/quicktime/exporter_spec.rb
|
@@ -22,4 +23,3 @@ spec/spec.opts
|
|
22
23
|
spec/spec_helper.rb
|
23
24
|
tasks/setup.rake
|
24
25
|
tasks/spec.rake
|
25
|
-
TODO
|
data/README.rdoc
CHANGED
@@ -15,6 +15,15 @@ And then load it in your project:
|
|
15
15
|
require 'rmov'
|
16
16
|
|
17
17
|
|
18
|
+
== 32 vs 64 Bit
|
19
|
+
|
20
|
+
Snow Leopard introduces a push towards 64 bit, and by default Ruby will run in 64 bit. Unfortunately the QuickTime C API will not be moving to 64 bit (see http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars/6 ). Therefore RMov 0.1.6 and later will always be installed under 32 bit.
|
21
|
+
|
22
|
+
This means You will not be able to use this gem while running the default 64 bit Ruby. Instead you will need to run Ruby in 32 bit mode. You can do so with this command.
|
23
|
+
|
24
|
+
arch -i386 ruby path/to/script.rb
|
25
|
+
|
26
|
+
|
18
27
|
== Usage
|
19
28
|
|
20
29
|
There are many methods for editing, compositing, and exporting movies. Here are some examples.
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('rmov', '0.1.
|
5
|
+
Echoe.new('rmov', '0.1.6') do |p|
|
6
6
|
p.summary = "Ruby wrapper for the QuickTime C API."
|
7
7
|
p.description = "Ruby wrapper for the QuickTime C API."
|
8
8
|
p.url = "http://github.com/ryanb/rmov"
|
data/ext/extconf.rb
CHANGED
data/rmov.gemspec
CHANGED
@@ -2,21 +2,21 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{rmov}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.6"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ryan Bates"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-09-15}
|
10
10
|
s.description = %q{Ruby wrapper for the QuickTime C API.}
|
11
11
|
s.email = %q{ryan (at) railscasts (dot) com}
|
12
12
|
s.extensions = ["ext/extconf.rb"]
|
13
|
-
s.extra_rdoc_files = ["CHANGELOG", "ext/exporter.c", "ext/extconf.rb", "ext/movie.c", "ext/rmov_ext.c", "ext/rmov_ext.h", "ext/track.c", "lib/quicktime/exporter.rb", "lib/quicktime/movie.rb", "lib/quicktime/track.rb", "lib/rmov.rb", "
|
14
|
-
s.files = ["CHANGELOG", "ext/exporter.c", "ext/extconf.rb", "ext/movie.c", "ext/rmov_ext.c", "ext/rmov_ext.h", "ext/track.c", "lib/quicktime/exporter.rb", "lib/quicktime/movie.rb", "lib/quicktime/track.rb", "lib/rmov.rb", "
|
13
|
+
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.rdoc", "TODO", "ext/exporter.c", "ext/extconf.rb", "ext/movie.c", "ext/rmov_ext.c", "ext/rmov_ext.h", "ext/track.c", "lib/quicktime/exporter.rb", "lib/quicktime/movie.rb", "lib/quicktime/track.rb", "lib/rmov.rb", "tasks/setup.rake", "tasks/spec.rake"]
|
14
|
+
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.rdoc", "Rakefile", "TODO", "ext/exporter.c", "ext/extconf.rb", "ext/movie.c", "ext/rmov_ext.c", "ext/rmov_ext.h", "ext/track.c", "lib/quicktime/exporter.rb", "lib/quicktime/movie.rb", "lib/quicktime/track.rb", "lib/rmov.rb", "spec/fixtures/dot.png", "spec/fixtures/settings.st", "spec/quicktime/exporter_spec.rb", "spec/quicktime/movie_spec.rb", "spec/quicktime/track_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/setup.rake", "tasks/spec.rake", "rmov.gemspec"]
|
15
15
|
s.homepage = %q{http://github.com/ryanb/rmov}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rmov", "--main", "README.rdoc"]
|
17
17
|
s.require_paths = ["lib", "ext"]
|
18
18
|
s.rubyforge_project = %q{rmov}
|
19
|
-
s.rubygems_version = %q{1.3.
|
19
|
+
s.rubygems_version = %q{1.3.5}
|
20
20
|
s.summary = %q{Ruby wrapper for the QuickTime C API.}
|
21
21
|
|
22
22
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Bates
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-15 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -21,6 +21,9 @@ extensions:
|
|
21
21
|
- ext/extconf.rb
|
22
22
|
extra_rdoc_files:
|
23
23
|
- CHANGELOG
|
24
|
+
- LICENSE
|
25
|
+
- README.rdoc
|
26
|
+
- TODO
|
24
27
|
- ext/exporter.c
|
25
28
|
- ext/extconf.rb
|
26
29
|
- ext/movie.c
|
@@ -31,13 +34,15 @@ extra_rdoc_files:
|
|
31
34
|
- lib/quicktime/movie.rb
|
32
35
|
- lib/quicktime/track.rb
|
33
36
|
- lib/rmov.rb
|
34
|
-
- LICENSE
|
35
|
-
- README.rdoc
|
36
37
|
- tasks/setup.rake
|
37
38
|
- tasks/spec.rake
|
38
|
-
- TODO
|
39
39
|
files:
|
40
40
|
- CHANGELOG
|
41
|
+
- LICENSE
|
42
|
+
- Manifest
|
43
|
+
- README.rdoc
|
44
|
+
- Rakefile
|
45
|
+
- TODO
|
41
46
|
- ext/exporter.c
|
42
47
|
- ext/extconf.rb
|
43
48
|
- ext/movie.c
|
@@ -48,10 +53,6 @@ files:
|
|
48
53
|
- lib/quicktime/movie.rb
|
49
54
|
- lib/quicktime/track.rb
|
50
55
|
- lib/rmov.rb
|
51
|
-
- LICENSE
|
52
|
-
- Manifest
|
53
|
-
- Rakefile
|
54
|
-
- README.rdoc
|
55
56
|
- spec/fixtures/dot.png
|
56
57
|
- spec/fixtures/settings.st
|
57
58
|
- spec/quicktime/exporter_spec.rb
|
@@ -61,7 +62,6 @@ files:
|
|
61
62
|
- spec/spec_helper.rb
|
62
63
|
- tasks/setup.rake
|
63
64
|
- tasks/spec.rake
|
64
|
-
- TODO
|
65
65
|
- rmov.gemspec
|
66
66
|
has_rdoc: true
|
67
67
|
homepage: http://github.com/ryanb/rmov
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements: []
|
94
94
|
|
95
95
|
rubyforge_project: rmov
|
96
|
-
rubygems_version: 1.3.
|
96
|
+
rubygems_version: 1.3.5
|
97
97
|
signing_key:
|
98
98
|
specification_version: 3
|
99
99
|
summary: Ruby wrapper for the QuickTime C API.
|