Skip to content

Version 2 Launched

Compare
Choose a tag to compare
@codeperfectplus codeperfectplus released this 14 Oct 17:42
· 85 commits to main since this release
58b5955

AudioBook

The audiobook is a python module for listening to your favorite PDF book.

Installation

Install using pypi

Changelog

V2.0.0

  • Save Audio Book locally
  • Listen to the book
  • Speech-speed control
  • Read password-protected PDF
  • Create JSON file for the book
pip install audiobook
from audiobook import AudioBook
ab = AudioBook() # argument: Speech-Speed="slow/normal/fast"

ab.save_audio(file_path, password=None) # save audio file 
ab.read_book(file_path, password=None) # listen to the book

What's Changed

New Contributors