musical 1.0.1 → 1.0.2
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/musical/dvd/chapter.rb +1 -1
- data/lib/musical/version.rb +1 -1
- data/spec/musical/dvd/chapter_spec.rb +1 -1
- 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: b93d23893d873236fd13291ab1ff038c3bcbd308
|
|
4
|
+
data.tar.gz: 4c1c1ed28e90ad688aedb0900a040c72bb4b80aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 663e5f7acb2c8094444fc373e9da20a3504cc1e1309c100cef4ffb96fd6ed8f5c9ae8ad1ef5c942fb7362822721624b6e3338036ddcd22110b315794f25e549b
|
|
7
|
+
data.tar.gz: 46f1d27eddcb7f958b506e5d11181184bec321879d129d545efa7b529e07ca655be04344f1fbda65a93fab66849099f9a25b53f0b10d68f9fcc9ee4495819640
|
data/lib/musical/dvd/chapter.rb
CHANGED
|
@@ -21,7 +21,7 @@ module Musical
|
|
|
21
21
|
def to_wav(wav_path = "#{Musical.configuration.output}/chapter_#{@title_number}_#{@chapter_number}.wav")
|
|
22
22
|
return @wav if @wav
|
|
23
23
|
|
|
24
|
-
command = "ffmpeg -i #{@vob_path} #{wav_path}"
|
|
24
|
+
command = "ffmpeg -i #{@vob_path} -ac 2 #{wav_path}"
|
|
25
25
|
execute_command(command, true)
|
|
26
26
|
DVD::Wav.new(wav_path)
|
|
27
27
|
end
|
data/lib/musical/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: musical
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ryo katsuma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|