rff 0.2.9 → 0.2.10
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/lib/processor.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 742f2175bc8672b43afb8af06a158005aca440be
|
|
4
|
+
data.tar.gz: 66adfeb340bdfdd663b84afee410dfddca3e3f0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d99daaefdc616c6617d02b5304fed33e029772e7f805389b4c2a04bab172a3c3ef0926b8f2375e4802b218b3caef4a727a75610c51fb6f4cf64b82d647b44c2e
|
|
7
|
+
data.tar.gz: 463e2ad21ecdc844b49628297e4341bf511c9111b36a938e160e0d87e7a8f0a0cdea143fe1fd8a4337697eeb0871a5fc1a9f9cea59e215a6d79a2cae6cf0116e
|
data/lib/processor.rb
CHANGED
|
@@ -92,9 +92,9 @@ module RFF
|
|
|
92
92
|
else
|
|
93
93
|
#puts "DEBUG: Reading metadata line..."
|
|
94
94
|
if @last_met_io == :input
|
|
95
|
-
@input_meta_audio[line.split(":")[0].downcase[0..-2].to_sym] = line.split(":")[1][1..-1]
|
|
95
|
+
@input_meta_audio[line.split(":")[0].downcase[0..-2].to_sym] = line.split(":")[1][1..-1] if !line.split(":")[0].nil?
|
|
96
96
|
elsif @last_met_io == :output
|
|
97
|
-
@output_meta_audio[line.split(":")[0].downcase[0..-2].to_sym] = line.split(":")[1][1..-1]
|
|
97
|
+
@output_meta_audio[line.split(":")[0].downcase[0..-2].to_sym] = line.split(":")[1][1..-1] if !line.split(":")[0].nil?
|
|
98
98
|
end
|
|
99
99
|
end
|
|
100
100
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phitherek_
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-09-26 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
|