1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! Dubbing CLI arguments
use clap::{Args, Subcommand};
/// Dubbing arguments
#[derive(Args)]
pub struct DubbingArgs {
#[command(subcommand)]
pub command: DubbingCommands,
}
#[derive(Subcommand)]
pub enum DubbingCommands {
/// Create a new dubbing project
Create {
/// File to dub
#[arg(short, long, value_name = "FILE")]
file: String,
/// Source language code
#[arg(short, long, value_name = "CODE")]
source_lang: String,
/// Target language code
#[arg(short, long, value_name = "CODE")]
target_lang: String,
/// Number of speakers
#[arg(long, value_name = "INT")]
num_speakers: Option<u32>,
/// Watermark the audio
#[arg(long)]
watermark: bool,
},
/// Get dubbing status
Status {
/// Dubbing ID
dubbing_id: String,
},
/// Download dubbed audio
Download {
/// Dubbing ID
dubbing_id: String,
/// Output file path
#[arg(short, long, value_name = "OUTPUT")]
output: Option<String>,
},
/// Delete a dubbing project
Delete {
/// Dubbing ID
dubbing_id: String,
},
}