mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
15 lines
324 B
Python
15 lines
324 B
Python
# represents a queued item - book, chapters, voice, etc.
|
|
from dataclasses import dataclass
|
|
|
|
@dataclass
|
|
class QueuedItem:
|
|
file_name: str
|
|
lang_code: str
|
|
speed: float
|
|
voice: str
|
|
save_option: str
|
|
output_folder: str
|
|
subtitle_mode: str
|
|
output_format: str
|
|
total_char_count: int
|
|
use_gpu: bool |