puremotion 0.0.1
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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +18 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/puremotion/codecs.rb +59 -0
- data/lib/puremotion/events/event.rb +69 -0
- data/lib/puremotion/events/generator.rb +50 -0
- data/lib/puremotion/media/stream/audio.rb +0 -0
- data/lib/puremotion/media/stream/base.rb +7 -0
- data/lib/puremotion/media/stream/collection.rb +5 -0
- data/lib/puremotion/media/stream/video.rb +61 -0
- data/lib/puremotion/media/stream.rb +4 -0
- data/lib/puremotion/media.rb +490 -0
- data/lib/puremotion/recipes/ipod.yml +12 -0
- data/lib/puremotion/thread.rb +153 -0
- data/lib/puremotion/tools/ffmpeg.rb +141 -0
- data/lib/puremotion/transcode/recipe.rb +250 -0
- data/lib/puremotion/transcode/transcode.rb +153 -0
- data/lib/puremotion.rb +22 -0
- data/puremotion.gemspec +68 -0
- data/test/helper.rb +10 -0
- data/test/test_puremotion.rb +7 -0
- metadata +89 -0
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: puremotion
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ominiom
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-11-14 00:00:00 +00:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: thoughtbot-shoulda
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: A Ruby wrapper for analysis and conversion of media using FFmpeg
|
26
|
+
email: iain.iw.wilson@googlemail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- lib/puremotion.rb
|
42
|
+
- lib/puremotion/codecs.rb
|
43
|
+
- lib/puremotion/events/event.rb
|
44
|
+
- lib/puremotion/events/generator.rb
|
45
|
+
- lib/puremotion/media.rb
|
46
|
+
- lib/puremotion/media/stream.rb
|
47
|
+
- lib/puremotion/media/stream/audio.rb
|
48
|
+
- lib/puremotion/media/stream/base.rb
|
49
|
+
- lib/puremotion/media/stream/collection.rb
|
50
|
+
- lib/puremotion/media/stream/video.rb
|
51
|
+
- lib/puremotion/recipes/ipod.yml
|
52
|
+
- lib/puremotion/thread.rb
|
53
|
+
- lib/puremotion/tools/ffmpeg.rb
|
54
|
+
- lib/puremotion/transcode/recipe.rb
|
55
|
+
- lib/puremotion/transcode/transcode.rb
|
56
|
+
- puremotion.gemspec
|
57
|
+
- test/helper.rb
|
58
|
+
- test/test_puremotion.rb
|
59
|
+
has_rdoc: true
|
60
|
+
homepage: http://github.com/ominiom/puremotion
|
61
|
+
licenses: []
|
62
|
+
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options:
|
65
|
+
- --charset=UTF-8
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: "0"
|
73
|
+
version:
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: "0"
|
79
|
+
version:
|
80
|
+
requirements: []
|
81
|
+
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 1.3.5
|
84
|
+
signing_key:
|
85
|
+
specification_version: 3
|
86
|
+
summary: PureMotion
|
87
|
+
test_files:
|
88
|
+
- test/helper.rb
|
89
|
+
- test/test_puremotion.rb
|