MusicMaster 1.0.0.20120307 → 1.0.1.20130827
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +1 -0
- data/ChangeLog +9 -0
- data/ReleaseInfo +1 -1
- data/bin/Calibrate.rb +0 -4
- data/bin/Clean.rb +0 -4
- data/bin/DBConvert.rb +1 -5
- data/bin/Deliver.rb +0 -4
- data/bin/Mix.rb +0 -4
- data/bin/Process.rb +0 -4
- data/bin/Record.rb +0 -4
- data/lib/MusicMaster/FilesNamer.rb +1 -6
- data/lib/MusicMaster/Formats/MP3.rb +0 -5
- data/lib/MusicMaster/Formats/Test.rb +0 -5
- data/lib/MusicMaster/Formats/Wave.rb +1 -6
- data/lib/MusicMaster/Hash.rb +0 -4
- data/lib/MusicMaster/Launcher.rb +2 -5
- data/lib/MusicMaster/Processes/ApplyVolumeFct.rb +1 -6
- data/lib/MusicMaster/Processes/Compressor.rb +6 -11
- data/lib/MusicMaster/Processes/Custom.rb +1 -6
- data/lib/MusicMaster/Processes/Cut.rb +1 -6
- data/lib/MusicMaster/Processes/CutFirstSignal.rb +1 -6
- data/lib/MusicMaster/Processes/DCShifter.rb +1 -6
- data/lib/MusicMaster/Processes/GVerb.rb +1 -6
- data/lib/MusicMaster/Processes/Normalize.rb +1 -6
- data/lib/MusicMaster/Processes/SilenceInserter.rb +1 -6
- data/lib/MusicMaster/Processes/Test.rb +1 -6
- data/lib/MusicMaster/Processes/VolCorrection.rb +1 -6
- data/lib/MusicMaster/RakeProcesses.rb +8 -13
- data/lib/MusicMaster/Symbol.rb +0 -5
- data/lib/MusicMaster/Task.rb +0 -5
- data/lib/MusicMaster/Utils.rb +2 -5
- metadata +64 -74
data/AUTHORS
CHANGED
data/ChangeLog
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
= MusicMaster Release History
|
2
2
|
|
3
|
+
== 1.0.1.20130827 (Beta)
|
4
|
+
|
5
|
+
* Removed useless copyrights
|
6
|
+
* Changed dependency on rUtilAnts to version >= 2.0
|
7
|
+
* Migrated to new rUtilAnts API
|
8
|
+
* Use last version of WSK
|
9
|
+
* Added support for Travis
|
10
|
+
* Added Releases among directories to ignore.
|
11
|
+
|
3
12
|
== 1.0.0.20120307 (Beta)
|
4
13
|
|
5
14
|
* No more global variable to store the configuration.
|
data/ReleaseInfo
CHANGED
data/bin/Calibrate.rb
CHANGED
data/bin/Clean.rb
CHANGED
data/bin/DBConvert.rb
CHANGED
@@ -1,8 +1,4 @@
|
|
1
1
|
#!env ruby
|
2
|
-
#--
|
3
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
4
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
5
|
-
#++
|
6
2
|
|
7
3
|
# Convert a ratio value into a decibel value
|
8
4
|
def val2db(iRatio)
|
@@ -35,4 +31,4 @@ else
|
|
35
31
|
lDB = lArg.to_f
|
36
32
|
puts "#{lDB}db = #{db2val(lDB)}"
|
37
33
|
end
|
38
|
-
|
34
|
+
|
data/bin/Deliver.rb
CHANGED
data/bin/Mix.rb
CHANGED
data/bin/Process.rb
CHANGED
data/bin/Record.rb
CHANGED
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2011 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
require 'MusicMaster/Hash'
|
7
2
|
|
8
3
|
module MusicMaster
|
@@ -208,7 +203,7 @@ module MusicMaster
|
|
208
203
|
return "#{getCleanedDir}/#{iBaseName}.04.NoiseGate.wav"
|
209
204
|
end
|
210
205
|
|
211
|
-
# Get the name of a file to processed
|
206
|
+
# Get the name of a file to be processed
|
212
207
|
#
|
213
208
|
# Parameters::
|
214
209
|
# * *iDir* (_String_): Directory where to store the processed file
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Formats
|
@@ -51,7 +46,7 @@ module MusicMaster
|
|
51
46
|
end
|
52
47
|
if (lShortcut)
|
53
48
|
# Just create a shortcut
|
54
|
-
|
49
|
+
create_shortcut(iSrcFileName, iDstFileName)
|
55
50
|
else
|
56
51
|
# We need to convert the Wave file: call SSRC
|
57
52
|
lTranslatedParams = [ '--profile standard', '--twopass' ]
|
data/lib/MusicMaster/Hash.rb
CHANGED
data/lib/MusicMaster/Launcher.rb
CHANGED
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
require 'fileutils'
|
7
2
|
require 'optparse'
|
8
3
|
require 'rUtilAnts/Logging'
|
@@ -88,6 +83,7 @@ module MusicMaster
|
|
88
83
|
if (lError == nil)
|
89
84
|
if debug_activated?
|
90
85
|
Rake::application.options.trace = true
|
86
|
+
Rake::application.options.trace_output = $stdout
|
91
87
|
displayRakeTasks
|
92
88
|
end
|
93
89
|
begin
|
@@ -96,6 +92,7 @@ module MusicMaster
|
|
96
92
|
lError = $!
|
97
93
|
end
|
98
94
|
log_info 'Processed finished successfully.' if (lError == nil)
|
95
|
+
displayRakeTasks if debug_activated?
|
99
96
|
end
|
100
97
|
end
|
101
98
|
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
require 'WSK/Common'
|
7
2
|
|
8
3
|
module MusicMaster
|
@@ -18,7 +13,7 @@ module MusicMaster
|
|
18
13
|
# * *:DBUnits* (_Boolean_): Are the units of the function in DB scale ? (else they are in a ratio scale).
|
19
14
|
|
20
15
|
include WSK::Common
|
21
|
-
|
16
|
+
|
22
17
|
# Execute the process
|
23
18
|
#
|
24
19
|
# Parameters::
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
require 'WSK/Common'
|
7
2
|
|
8
3
|
module MusicMaster
|
@@ -10,7 +5,7 @@ module MusicMaster
|
|
10
5
|
module Processes
|
11
6
|
|
12
7
|
class Compressor
|
13
|
-
|
8
|
+
|
14
9
|
# Parameters of this process:
|
15
10
|
# * *:DBUnits* (_Boolean_): Are units in DB format ? [optional = false]
|
16
11
|
# * *:Threshold* (_Float_): The threshold below which there is no compression (in DB if :DBUnit is true, else in a [0..1] scale)
|
@@ -138,13 +133,13 @@ module MusicMaster
|
|
138
133
|
end
|
139
134
|
end
|
140
135
|
end
|
141
|
-
|
136
|
+
|
142
137
|
#dumpDebugFct(iInputFileName, lProfileFunction, 'ProfileDB', lDBUnits, iTempDir)
|
143
138
|
|
144
139
|
# Clone the profile function before applying the map
|
145
140
|
lNewProfileFunction = WSK::Functions::Function.new
|
146
141
|
lNewProfileFunction.set(lProfileFunction.function_data.clone)
|
147
|
-
|
142
|
+
|
148
143
|
# Transform the Profile function with the Compressor function
|
149
144
|
log_info 'Apply compressor transfer function ...'
|
150
145
|
lNewProfileFunction.apply_map_function(lCompressorFunction)
|
@@ -200,9 +195,9 @@ module MusicMaster
|
|
200
195
|
else
|
201
196
|
lDiffProfileFunction.apply_damping(lReleaseSlope, -lAttackSlope)
|
202
197
|
end
|
203
|
-
|
198
|
+
|
204
199
|
#dumpDebugFct(iInputFileName, lDiffProfileFunction, 'DampedDiffProfileDB', lDBUnits, iTempDir)
|
205
|
-
|
200
|
+
|
206
201
|
# Eliminate glitches in the function.
|
207
202
|
# This is done by deleting intermediate abscisses that are too close to each other
|
208
203
|
|
@@ -241,7 +236,7 @@ module MusicMaster
|
|
241
236
|
lRoundedFunction.write_to_file("#{iTempDir}/_#{lBaseFileName}_#{iName}.fct.rb", :Floats => true)
|
242
237
|
wsk(iInputFileName, "#{iTempDir}/_#{lBaseFileName}_#{iName}.wav", 'DrawFct', "--function \"#{iTempDir}/_#{lBaseFileName}_#{iName}.fct.rb\" --unitdb #{iDBUnits ? '1' : '0'}")
|
243
238
|
end
|
244
|
-
|
239
|
+
|
245
240
|
end
|
246
241
|
|
247
242
|
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -28,4 +23,4 @@ module MusicMaster
|
|
28
23
|
|
29
24
|
end
|
30
25
|
|
31
|
-
end
|
26
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -28,4 +23,4 @@ module MusicMaster
|
|
28
23
|
|
29
24
|
end
|
30
25
|
|
31
|
-
end
|
26
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -27,4 +22,4 @@ module MusicMaster
|
|
27
22
|
|
28
23
|
end
|
29
24
|
|
30
|
-
end
|
25
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -27,4 +22,4 @@ module MusicMaster
|
|
27
22
|
|
28
23
|
end
|
29
24
|
|
30
|
-
end
|
25
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -28,4 +23,4 @@ module MusicMaster
|
|
28
23
|
|
29
24
|
end
|
30
25
|
|
31
|
-
end
|
26
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -49,4 +44,4 @@ module MusicMaster
|
|
49
44
|
|
50
45
|
end
|
51
46
|
|
52
|
-
end
|
47
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -28,4 +23,4 @@ module MusicMaster
|
|
28
23
|
|
29
24
|
end
|
30
25
|
|
31
|
-
end
|
26
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -36,4 +31,4 @@ module MusicMaster
|
|
36
31
|
|
37
32
|
end
|
38
33
|
|
39
|
-
end
|
34
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2009 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
module MusicMaster
|
7
2
|
|
8
3
|
module Processes
|
@@ -27,4 +22,4 @@ module MusicMaster
|
|
27
22
|
|
28
23
|
end
|
29
24
|
|
30
|
-
end
|
25
|
+
end
|
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2011 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
gem 'rake', '>= 0.9'
|
7
2
|
require 'rake'
|
8
3
|
|
@@ -696,7 +691,7 @@ module MusicMaster
|
|
696
691
|
iRecordedFileName, iAnalyzeRecordedFileName, iFFTProfileSilenceFileName, iAnalyzeSilenceFileName = iTask.prerequisites
|
697
692
|
|
698
693
|
# Get DC offset from the recorded file
|
699
|
-
|
694
|
+
_, lDCOffsets = getDCOffsets(iAnalyzeRecordedFileName)
|
700
695
|
# Get thresholds (without DC offsets) from the silence file
|
701
696
|
lSilenceThresholds = getThresholds(iAnalyzeSilenceFileName, :margin => @MusicMasterConf[:Clean][:MarginSilenceThresholds])
|
702
697
|
# Get the thresholds with the recorded DC offset, and prepare them to be given to wsk
|
@@ -733,14 +728,14 @@ module MusicMaster
|
|
733
728
|
lOffset, lDCOffsets = getDCOffsets(lRecordedAnalysisFileName)
|
734
729
|
lSourceFileName = nil
|
735
730
|
if (lOffset)
|
736
|
-
log_debug "Noise gated file #{lNoiseGatedFileName} will depend on a DC shifted recording."
|
731
|
+
log_debug "Noise gated file #{lNoiseGatedFileName} will depend on a DC shifted recording. DC offsets: #{lDCOffsets.inspect}"
|
737
732
|
lSourceFileName = @Context[:CleanFiles][lBaseName][:DCRemovedFileName]
|
738
733
|
# Create the corresponding task removing the DC offset
|
739
734
|
|
740
735
|
desc "Remove DC offset from file #{lRecordedAnalysisFileName}"
|
741
736
|
file lSourceFileName => [ lRecordedAnalysisFileName, @Context[:CleanFiles][lBaseName][:FramedFileName] ] do |iDCRemoveTask|
|
742
737
|
iRecordedAnalysisFileName, iFramedFileName = iDCRemoveTask.prerequisites
|
743
|
-
|
738
|
+
_, lDCOffsets2 = getDCOffsets(iRecordedAnalysisFileName)
|
744
739
|
wsk(iFramedFileName, iDCRemoveTask.name, 'DCShifter', "--offset \"#{lDCOffsets2.map { |iValue| -iValue }.join('|')}\"")
|
745
740
|
end
|
746
741
|
|
@@ -764,7 +759,7 @@ module MusicMaster
|
|
764
759
|
desc "Apply Noise Gate to recorded file based on #{iBaseName}"
|
765
760
|
file lNoiseGatedFileName => lDependenciesNoiseGateTaskName do |iTask|
|
766
761
|
# Prerequisites list has been setup by the first prerequisite execution
|
767
|
-
iSourceFileName,
|
762
|
+
iSourceFileName, _, iSilenceAnalysisFileName, iSilenceFFTProfileFileName = iTask.prerequisites[1..4]
|
768
763
|
# Get thresholds (without DC offsets) from the silence file
|
769
764
|
lSilenceThresholds = getThresholds(iSilenceAnalysisFileName, :margin => @MusicMasterConf[:Clean][:MarginSilenceThresholds])
|
770
765
|
lLstStrSilenceThresholds = lSilenceThresholds.map { |iThreshold| iThreshold.join(',') }
|
@@ -839,7 +834,7 @@ module MusicMaster
|
|
839
834
|
lDependenciesTarget = "Dependencies_Mix_#{iMixName}".to_sym
|
840
835
|
lFinalMixTask = "FinalMix_#{iMixName}".to_sym
|
841
836
|
# Create the target being the symbolic link
|
842
|
-
lSymLinkFileName =
|
837
|
+
lSymLinkFileName = get_shortcut_file_name(getFinalMixFileName(iMixName))
|
843
838
|
|
844
839
|
desc "Mix #{iMixName}"
|
845
840
|
task rTarget => lSymLinkFileName
|
@@ -849,7 +844,7 @@ module MusicMaster
|
|
849
844
|
# Get the mix name from the name of the Dependencies target
|
850
845
|
lMixName = iTask.prerequisites[0].to_s.match(/^Dependencies_Mix_(.*)$/)[1]
|
851
846
|
FileUtils::mkdir_p(File.dirname(iTask.name))
|
852
|
-
|
847
|
+
create_shortcut(iTask.prerequisites[1], getFinalMixFileName(lMixName))
|
853
848
|
end
|
854
849
|
|
855
850
|
desc "Dependencies needed to mix #{iMixName}"
|
@@ -857,7 +852,7 @@ module MusicMaster
|
|
857
852
|
lMixName = iTask.name.match(/^Dependencies_Mix_(.*)$/)[1]
|
858
853
|
|
859
854
|
# Modify the dependencies of the symbolic link
|
860
|
-
Rake::Task[
|
855
|
+
Rake::Task[get_shortcut_file_name(getFinalMixFileName(lMixName))].prerequisites.replace([
|
861
856
|
iTask.name,
|
862
857
|
Rake::Task[iTask.prerequisites.first].data[:FileName]
|
863
858
|
])
|
@@ -1011,4 +1006,4 @@ module MusicMaster
|
|
1011
1006
|
|
1012
1007
|
end
|
1013
1008
|
|
1014
|
-
end
|
1009
|
+
end
|
data/lib/MusicMaster/Symbol.rb
CHANGED
data/lib/MusicMaster/Task.rb
CHANGED
data/lib/MusicMaster/Utils.rb
CHANGED
@@ -1,8 +1,3 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2011 - 2012 Muriel Salvan (muriel@x-aeon.com)
|
3
|
-
# Licensed under the terms specified in LICENSE file. No warranty is provided.
|
4
|
-
#++
|
5
|
-
|
6
1
|
require 'pp'
|
7
2
|
require 'tmpdir'
|
8
3
|
|
@@ -449,6 +444,8 @@ module MusicMaster
|
|
449
444
|
log_info ''
|
450
445
|
log_info "========== Processing #{iInputFile} ==#{iAction}==> #{iOutputFile} | #{iParams} ..."
|
451
446
|
FileUtils::mkdir_p(File.dirname(iOutputFile))
|
447
|
+
# If the file already exists, delete it
|
448
|
+
File.unlink(iOutputFile) if File.exists?(iOutputFile)
|
452
449
|
lCmd = "#{@MusicMasterConf[:WSKCmdLine]} --input \"#{iInputFile}\" --output \"#{iOutputFile}\" --action #{iAction} -- #{iParams}"
|
453
450
|
log_debug "#{Dir.getwd}> #{lCmd}"
|
454
451
|
system(lCmd)
|
metadata
CHANGED
@@ -1,69 +1,69 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: MusicMaster
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 20120307
|
10
|
-
version: 1.0.0.20120307
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1.20130827
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Muriel Salvan
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2013-08-27 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
22
15
|
name: rake
|
23
|
-
|
24
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
25
17
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
- 0
|
31
|
-
- 9
|
32
|
-
version: "0.9"
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0.9'
|
33
22
|
type: :runtime
|
34
|
-
version_requirements: *id001
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: rUtilAnts
|
37
23
|
prerelease: false
|
38
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
25
|
none: false
|
40
|
-
requirements:
|
41
|
-
- -
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.9'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rUtilAnts
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '2.0'
|
47
38
|
type: :runtime
|
48
|
-
version_requirements: *id002
|
49
|
-
- !ruby/object:Gem::Dependency
|
50
|
-
name: WaveSwissKnife
|
51
39
|
prerelease: false
|
52
|
-
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
41
|
none: false
|
54
|
-
requirements:
|
55
|
-
- -
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '2.0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: WaveSwissKnife
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
61
53
|
version: 0.0.1
|
62
54
|
type: :runtime
|
63
|
-
|
64
|
-
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.0.1
|
62
|
+
description: Command line tool handling steps to deliver music album masters from
|
63
|
+
recordings. Handle Track Mixing, Track Mastering, Track Master Delivery, Album Mastering
|
64
|
+
and Album Master Delivery. Easy-to-use configuration files drive the complete processes.
|
65
65
|
email: muriel@x-aeon.com
|
66
|
-
executables:
|
66
|
+
executables:
|
67
67
|
- Calibrate.rb
|
68
68
|
- Clean.rb
|
69
69
|
- DBConvert.rb
|
@@ -72,10 +72,8 @@ executables:
|
|
72
72
|
- Process.rb
|
73
73
|
- Record.rb
|
74
74
|
extensions: []
|
75
|
-
|
76
75
|
extra_rdoc_files: []
|
77
|
-
|
78
|
-
files:
|
76
|
+
files:
|
79
77
|
- AUTHORS
|
80
78
|
- bin/Calibrate.rb
|
81
79
|
- bin/Clean.rb
|
@@ -118,37 +116,29 @@ files:
|
|
118
116
|
- README
|
119
117
|
- record.conf.rb.example
|
120
118
|
- ReleaseInfo
|
121
|
-
has_rdoc: true
|
122
119
|
homepage: http://musicmaster.sourceforge.net/
|
123
120
|
licenses: []
|
124
|
-
|
125
121
|
post_install_message:
|
126
122
|
rdoc_options: []
|
127
|
-
|
128
|
-
require_paths:
|
123
|
+
require_paths:
|
129
124
|
- lib
|
130
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
131
126
|
none: false
|
132
|
-
requirements:
|
133
|
-
- -
|
134
|
-
- !ruby/object:Gem::Version
|
135
|
-
|
136
|
-
|
137
|
-
version: "0"
|
138
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ! '>='
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
139
132
|
none: false
|
140
|
-
requirements:
|
141
|
-
- -
|
142
|
-
- !ruby/object:Gem::Version
|
143
|
-
|
144
|
-
- 0
|
145
|
-
version: "0"
|
133
|
+
requirements:
|
134
|
+
- - ! '>='
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '0'
|
146
137
|
requirements: []
|
147
|
-
|
148
138
|
rubyforge_project: musicmaster
|
149
|
-
rubygems_version: 1.
|
139
|
+
rubygems_version: 1.8.24
|
150
140
|
signing_key:
|
151
141
|
specification_version: 3
|
152
|
-
summary: Command line tool helping recording, mixing and mastering music tracks and
|
142
|
+
summary: Command line tool helping recording, mixing and mastering music tracks and
|
143
|
+
albums.
|
153
144
|
test_files: []
|
154
|
-
|