X-Git-Url: https://njoseph.me/gitweb/babashka-scripts.git/blobdiff_plain/746d64040956017457d38f0bf59649e96d0ab449:/ebook-to-audio-book..ec37ad05d576d79b3dc2d05b2bcae632a93e8c35:/scripts/ebooks.clj diff --git a/ebook-to-audio-book b/scripts/ebooks.clj old mode 100755 new mode 100644 similarity index 52% rename from ebook-to-audio-book rename to scripts/ebooks.clj index ce2fe4b..45944ce --- a/ebook-to-audio-book +++ b/scripts/ebooks.clj @@ -1,24 +1,24 @@ -#! /usr/bin/env bb -; -*- mode: clojure -*- +(ns ebooks + (:require [clojure.java.io :as io] + [clojure.string :refer [split]] + [lib :refer [run-cmd extract-file-from-zip]])) -; A utility to listen to your ebooks using TTS programs +; Utilities for dealing with ebooks ; -; This utility only works on macOS for now. - -(require '[clojure.java.io :as io] - '[clojure.string :refer [split]] - '[lib :refer [run-cmd extract-file-from-zip unixify]]) +; Dependencies: +; 1. calibre +; 2. ffmpeg +; 3. OS-dependent TTS software ;; TODO Check if all required utilities are installed -;; TODO Allow voice selection - -(let [default-voice (run-cmd ["defaults" "read" "com.apple.speech.voice.prefs" "SelectedVoiceName"])] - (println (str "Will read using the default voice " default-voice))) -;; TODO Use festival-tts or say depending on OS - -(defn- convert +;; TODO Use tools.cli to provide more options +(defn convert-ebook-to-audiobook + "A utility to listen to your ebooks using TTS programs. This utility only works on macOS for now." [book-file] + ;; TODO Allow voice selection + (let [default-voice (run-cmd ["defaults" "read" "com.apple.speech.voice.prefs" "SelectedVoiceName"])] + (println (str "Will read using the default voice " default-voice))) (let [title (first (split book-file #"\.")) txtz-file (str title ".txtz") txt-file (str title ".txt") @@ -28,11 +28,10 @@ (run-cmd ["ebook-convert" book-file txtz-file]) (extract-file-from-zip txtz-file "index.txt" txt-file) (println "Converting text to audio. Don't hold your breath!") + ;; TODO Use festival-tts or say depending on OS (run-cmd ["say" "-f" txt-file "-o" aiff-file]) (println "Creating mp3 file...") (run-cmd ["ffmpeg" "-i" aiff-file mp3-file]) (println "Cleaning up...") (run! io/delete-file [txtz-file txt-file aiff-file]) (println (str "Done! Check out " mp3-file)))) - -(unixify convert)