Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/podcastifier/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@
sound (if (:->stereo config) (->stereo sound) sound)
sound (if (:pan config) (pan sound (:pan config)) sound)
sound (fade-sound sound config)
sound (if (:pre-silence config) (append (silence (:pre-silence config) 2) sound) sound)
sound (if (:post-silence config) (append sound (silence (:post-silence config) 2)) sound)]
sound (if (:pre-silence config) (append (silence (:pre-silence config) (channels sound)) sound) sound)
sound (if (:post-silence config) (append sound (silence (:post-silence config) (channels sound))) sound)]
sound))

(defn read-sound-file
Expand Down