rff 0.2.1 → 0.2.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.
- checksums.yaml +4 -4
- data/ext/rff/Makefile +8 -0
- data/ext/rff/extconf.rb +20 -0
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb457c6f053f0e540b537f18bdbad4d5f60bab59
|
|
4
|
+
data.tar.gz: a8f3dafb9749a3ba2900d0f1edf4420773b69d0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86cdd8e8b29ee0de8e7291aee518a7a5236e37da3a7a4b6474bdcbc7a4b3f07e631b71b6cb1142e54abee2ab64f99b48dadf7c882b1cbe7d0b3d40f33009792b
|
|
7
|
+
data.tar.gz: 45622a31a7ab93cbb9223b9feb76b4a40775755072789f1d84ab13d6d8e1550acef9e29bd6f3b6590d9307076235d74972d1c71a5099d1290d8f7dc36daabe26
|
data/ext/rff/Makefile
ADDED
data/ext/rff/extconf.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'mkmf'
|
|
2
|
+
|
|
3
|
+
fffound = find_executable('ffmpeg')
|
|
4
|
+
makefound = find_executable('make')
|
|
5
|
+
|
|
6
|
+
if !fffound
|
|
7
|
+
puts "FFmpeg was not found on your system, installation will be aborted. Please install FFmpeg and try again."
|
|
8
|
+
return false
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
if !makefound
|
|
12
|
+
puts "Make was not found on your system, installation will be aborted. Please install Make and try again."
|
|
13
|
+
return false
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
puts "Dependencies OK, proceeding with the installation..."
|
|
17
|
+
|
|
18
|
+
File.new(Dir.pwd + '/rff.' + RbConfig::CONFIG['DLEXT'], "w+")
|
|
19
|
+
|
|
20
|
+
$makefile_created = true
|
metadata
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rff
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phitherek_
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-04-
|
|
11
|
+
date: 2014-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This gem provides a simple Ruby interface to FFmpeg enabling users to
|
|
14
14
|
convert audio and video to HTML5 supported formats and monitor the process as it
|
|
15
15
|
goes.
|
|
16
16
|
email: phitherek@gmail.com
|
|
17
17
|
executables: []
|
|
18
|
-
extensions:
|
|
18
|
+
extensions:
|
|
19
|
+
- ext/rff/extconf.rb
|
|
19
20
|
extra_rdoc_files: []
|
|
20
21
|
files:
|
|
22
|
+
- ext/rff/Makefile
|
|
23
|
+
- ext/rff/extconf.rb
|
|
21
24
|
- lib/audio_handler.rb
|
|
22
25
|
- lib/exceptions.rb
|
|
23
26
|
- lib/output_reader.rb
|
|
@@ -44,6 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
44
47
|
version: '0'
|
|
45
48
|
requirements:
|
|
46
49
|
- ffmpeg
|
|
50
|
+
- make
|
|
47
51
|
rubyforge_project:
|
|
48
52
|
rubygems_version: 2.2.2
|
|
49
53
|
signing_key:
|