packages feed

polysemy-video 0.1.1.0 → 0.1.2.0

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Polysemy.Video: extractAudio :: forall r_afNP b_Xbyu b'_Xbyw. MemberWithError ClipProcess r_afNP => Path b_Xbyu File -> [(Range, Path b'_Xbyw File)] -> Sem r_afNP ()
+ Polysemy.Video: extractAudio :: forall r_aats b_X86Z b'_X871. MemberWithError ClipProcess r_aats => Path b_X86Z File -> [(Range, Path b'_X871 File)] -> Sem r_aats ()
- Polysemy.Video: extractClips :: forall r_afNS b_Xbyx b'_Xbyz. MemberWithError ClipProcess r_afNS => Path b_Xbyx File -> [(Range, Path b'_Xbyz File)] -> Sem r_afNS ()
+ Polysemy.Video: extractClips :: forall r_aatv b_X872 b'_X874. MemberWithError ClipProcess r_aatv => Path b_X872 File -> [(Range, Path b'_X874 File)] -> Sem r_aatv ()
- Polysemy.Video: extractFrames :: forall r_afNV b_XbyA b'_XbyC. MemberWithError ClipProcess r_afNV => Path b_XbyA File -> [(Time, Path b'_XbyC File)] -> Sem r_afNV ()
+ Polysemy.Video: extractFrames :: forall r_aaty b_X875 b'_X877. MemberWithError ClipProcess r_aaty => Path b_X875 File -> [(Time, Path b'_X877 File)] -> Sem r_aaty ()

Files

polysemy-video.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           polysemy-video-version:        0.1.1.0+version:        0.1.2.0 description:    Experimental video processing DSL for polysemy. category:       video polysemy author:         Daniel Firth
src/Polysemy/Video.hs view
@@ -69,7 +69,7 @@  -- | "ffmpeg -y" followed by some arguments. runffmpeg :: MonadIO m => [Text] -> m ()-runffmpeg xs = S.sh $ S.inproc "ffmpeg" ("-y" : xs) mempty+runffmpeg xs = S.sh $ S.inproc "ffmpeg" ("-y" : "-loglevel" : "warning" : xs) mempty  -- | "mkdir -p" with a `Path b Dir`. mktreeFP :: MonadIO m => Path b Dir -> m ()