dobutokO2 0.24.5.0 → 0.24.6.0
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- CHANGELOG.md +4/−0
- DobutokO/Sound.hs +1/−1
- dobutokO2.cabal +1/−1
CHANGELOG.md view
@@ -242,3 +242,7 @@ * Twenty-fourth version revised E. Fixed issues with too silent sound for overtones. Imroved precision settings for functions so that it is expected the generated sound to be more expressive. Improved stability. ++## 0.24.6.0 -- 2020-04-07++* Twenty-fourth version revised F. Fixed issue with being not compiled.
DobutokO/Sound.hs view
@@ -240,7 +240,7 @@ v1 = maybe V.empty overTones note1 overSoXSynthHelp vec = V.imapM_ (\i (noteN, !amplN) -> readProcessWithExitCode (fromJust (showE "sox")) ["-r22050", "-n", "test0" ++ show (i + 2) ++ ".wav", "synth", "0.5","sine", showFFloat (Just 4) noteN "", "vol",- showFFloat (Just 4) ampl ""] "") vec+ showFFloat (Just 4) amplN ""] "") vec overSoXSynthHelp2 vec = let l = V.length vec in V.imapM_ (\i (noteN, !amplN) -> readProcessWithExitCode (fromJust (showE "sox")) ["-r22050", "-n", "test1" ++ show (i + 2) ++ ".wav", "synth", "0.5","sine", showFFloat (Just 4) noteN "", "vol", showFFloat (Just 4) amplN ""] "") vec
dobutokO2.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: dobutokO2-version: 0.24.5.0+version: 0.24.6.0 synopsis: A program and a library to create experimental music from a mono audio and a Ukrainian text description: It can also create a timbre for the notes. Uses SoX inside. homepage: https://hackage.haskell.org/package/dobutokO2