magic_hour 0.38.1__py3-none-any.whl → 0.40.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- magic_hour/README.md +3 -3
- magic_hour/environment.py +1 -1
- magic_hour/resources/v1/README.md +2 -2
- magic_hour/resources/v1/ai_clothes_changer/README.md +4 -3
- magic_hour/resources/v1/ai_face_editor/README.md +4 -2
- magic_hour/resources/v1/ai_gif_generator/README.md +5 -2
- magic_hour/resources/v1/ai_headshot_generator/README.md +4 -2
- magic_hour/resources/v1/ai_image_editor/README.md +4 -2
- magic_hour/resources/v1/ai_image_generator/README.md +4 -2
- magic_hour/resources/v1/ai_image_upscaler/README.md +4 -2
- magic_hour/resources/v1/ai_meme_generator/README.md +4 -2
- magic_hour/resources/v1/ai_photo_editor/README.md +4 -2
- magic_hour/resources/v1/ai_qr_code_generator/README.md +4 -2
- magic_hour/resources/v1/ai_talking_photo/README.md +5 -3
- magic_hour/resources/v1/ai_voice_generator/README.md +56 -0
- magic_hour/resources/v1/ai_voice_generator/__init__.py +4 -0
- magic_hour/resources/v1/ai_voice_generator/client.py +119 -0
- magic_hour/resources/v1/animation/README.md +4 -2
- magic_hour/resources/v1/audio_projects/README.md +90 -0
- magic_hour/resources/v1/audio_projects/__init__.py +4 -0
- magic_hour/resources/v1/audio_projects/client.py +173 -0
- magic_hour/resources/v1/auto_subtitle_generator/README.md +4 -2
- magic_hour/resources/v1/client.py +14 -0
- magic_hour/resources/v1/face_detection/README.md +4 -2
- magic_hour/resources/v1/face_swap/README.md +5 -2
- magic_hour/resources/v1/face_swap_photo/README.md +4 -2
- magic_hour/resources/v1/files/README.md +4 -1
- magic_hour/resources/v1/files/upload_urls/README.md +2 -5
- magic_hour/resources/v1/image_background_remover/README.md +4 -2
- magic_hour/resources/v1/image_projects/README.md +4 -2
- magic_hour/resources/v1/image_to_video/README.md +4 -2
- magic_hour/resources/v1/lip_sync/README.md +4 -2
- magic_hour/resources/v1/photo_colorizer/README.md +4 -2
- magic_hour/resources/v1/text_to_video/README.md +4 -2
- magic_hour/resources/v1/video_projects/README.md +4 -2
- magic_hour/resources/v1/video_to_video/README.md +9 -9
- magic_hour/resources/v1/video_to_video/client.py +0 -2
- magic_hour/types/models/__init__.py +10 -0
- magic_hour/types/models/v1_ai_voice_generator_create_response.py +27 -0
- magic_hour/types/models/v1_audio_projects_get_response.py +72 -0
- magic_hour/types/models/v1_audio_projects_get_response_downloads_item.py +19 -0
- magic_hour/types/models/v1_audio_projects_get_response_error.py +25 -0
- magic_hour/types/params/__init__.py +12 -0
- magic_hour/types/params/v1_ai_voice_generator_create_body.py +40 -0
- magic_hour/types/params/v1_ai_voice_generator_create_body_style.py +60 -0
- magic_hour/types/params/v1_video_to_video_create_body_style.py +21 -19
- {magic_hour-0.38.1.dist-info → magic_hour-0.40.0.dist-info}/METADATA +11 -1
- {magic_hour-0.38.1.dist-info → magic_hour-0.40.0.dist-info}/RECORD +50 -38
- {magic_hour-0.38.1.dist-info → magic_hour-0.40.0.dist-info}/LICENSE +0 -0
- {magic_hour-0.38.1.dist-info → magic_hour-0.40.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
import typing
|
|
3
|
+
import typing_extensions
|
|
4
|
+
|
|
5
|
+
from .v1_audio_projects_get_response_downloads_item import (
|
|
6
|
+
V1AudioProjectsGetResponseDownloadsItem,
|
|
7
|
+
)
|
|
8
|
+
from .v1_audio_projects_get_response_error import V1AudioProjectsGetResponseError
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class V1AudioProjectsGetResponse(pydantic.BaseModel):
|
|
12
|
+
"""
|
|
13
|
+
Success
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
model_config = pydantic.ConfigDict(
|
|
17
|
+
arbitrary_types_allowed=True,
|
|
18
|
+
populate_by_name=True,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
created_at: str = pydantic.Field(
|
|
22
|
+
alias="created_at",
|
|
23
|
+
)
|
|
24
|
+
credits_charged: int = pydantic.Field(
|
|
25
|
+
alias="credits_charged",
|
|
26
|
+
)
|
|
27
|
+
"""
|
|
28
|
+
The amount of credits deducted from your account to generate the audio. We charge credits right when the request is made.
|
|
29
|
+
|
|
30
|
+
If an error occurred while generating the audio, credits will be refunded and this field will be updated to include the refund.
|
|
31
|
+
"""
|
|
32
|
+
downloads: typing.List[V1AudioProjectsGetResponseDownloadsItem] = pydantic.Field(
|
|
33
|
+
alias="downloads",
|
|
34
|
+
)
|
|
35
|
+
enabled: bool = pydantic.Field(
|
|
36
|
+
alias="enabled",
|
|
37
|
+
)
|
|
38
|
+
"""
|
|
39
|
+
Indicates whether the resource is deleted
|
|
40
|
+
"""
|
|
41
|
+
error: typing.Optional[V1AudioProjectsGetResponseError] = pydantic.Field(
|
|
42
|
+
alias="error",
|
|
43
|
+
)
|
|
44
|
+
"""
|
|
45
|
+
In the case of an error, this object will contain the error encountered during video render
|
|
46
|
+
"""
|
|
47
|
+
id: str = pydantic.Field(
|
|
48
|
+
alias="id",
|
|
49
|
+
)
|
|
50
|
+
"""
|
|
51
|
+
Unique ID of the audio. This value can be used in the [get audio project API](https://docs.magichour.ai/api-reference/audio-projects/get-audio-details) to fetch additional details such as status
|
|
52
|
+
"""
|
|
53
|
+
name: typing.Optional[str] = pydantic.Field(
|
|
54
|
+
alias="name",
|
|
55
|
+
)
|
|
56
|
+
"""
|
|
57
|
+
The name of the audio.
|
|
58
|
+
"""
|
|
59
|
+
status: typing_extensions.Literal[
|
|
60
|
+
"canceled", "complete", "draft", "error", "queued", "rendering"
|
|
61
|
+
] = pydantic.Field(
|
|
62
|
+
alias="status",
|
|
63
|
+
)
|
|
64
|
+
"""
|
|
65
|
+
The status of the audio.
|
|
66
|
+
"""
|
|
67
|
+
type_: str = pydantic.Field(
|
|
68
|
+
alias="type",
|
|
69
|
+
)
|
|
70
|
+
"""
|
|
71
|
+
The type of the audio project. Possible values are VOICE_GENERATOR
|
|
72
|
+
"""
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class V1AudioProjectsGetResponseDownloadsItem(pydantic.BaseModel):
|
|
5
|
+
"""
|
|
6
|
+
The download url and expiration date of the audio project
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
model_config = pydantic.ConfigDict(
|
|
10
|
+
arbitrary_types_allowed=True,
|
|
11
|
+
populate_by_name=True,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
expires_at: str = pydantic.Field(
|
|
15
|
+
alias="expires_at",
|
|
16
|
+
)
|
|
17
|
+
url: str = pydantic.Field(
|
|
18
|
+
alias="url",
|
|
19
|
+
)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class V1AudioProjectsGetResponseError(pydantic.BaseModel):
|
|
5
|
+
"""
|
|
6
|
+
In the case of an error, this object will contain the error encountered during video render
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
model_config = pydantic.ConfigDict(
|
|
10
|
+
arbitrary_types_allowed=True,
|
|
11
|
+
populate_by_name=True,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
code: str = pydantic.Field(
|
|
15
|
+
alias="code",
|
|
16
|
+
)
|
|
17
|
+
"""
|
|
18
|
+
An error code to indicate why a failure happened.
|
|
19
|
+
"""
|
|
20
|
+
message: str = pydantic.Field(
|
|
21
|
+
alias="message",
|
|
22
|
+
)
|
|
23
|
+
"""
|
|
24
|
+
Details on the reason why a failure happened.
|
|
25
|
+
"""
|
|
@@ -123,6 +123,14 @@ from .v1_ai_talking_photo_create_body_style import (
|
|
|
123
123
|
_SerializerV1AiTalkingPhotoCreateBodyStyle,
|
|
124
124
|
)
|
|
125
125
|
from .v1_ai_talking_photo_generate_body_assets import V1AiTalkingPhotoGenerateBodyAssets
|
|
126
|
+
from .v1_ai_voice_generator_create_body import (
|
|
127
|
+
V1AiVoiceGeneratorCreateBody,
|
|
128
|
+
_SerializerV1AiVoiceGeneratorCreateBody,
|
|
129
|
+
)
|
|
130
|
+
from .v1_ai_voice_generator_create_body_style import (
|
|
131
|
+
V1AiVoiceGeneratorCreateBodyStyle,
|
|
132
|
+
_SerializerV1AiVoiceGeneratorCreateBodyStyle,
|
|
133
|
+
)
|
|
126
134
|
from .v1_animation_create_body import (
|
|
127
135
|
V1AnimationCreateBody,
|
|
128
136
|
_SerializerV1AnimationCreateBody,
|
|
@@ -306,6 +314,8 @@ __all__ = [
|
|
|
306
314
|
"V1AiTalkingPhotoCreateBodyAssets",
|
|
307
315
|
"V1AiTalkingPhotoCreateBodyStyle",
|
|
308
316
|
"V1AiTalkingPhotoGenerateBodyAssets",
|
|
317
|
+
"V1AiVoiceGeneratorCreateBody",
|
|
318
|
+
"V1AiVoiceGeneratorCreateBodyStyle",
|
|
309
319
|
"V1AnimationCreateBody",
|
|
310
320
|
"V1AnimationCreateBodyAssets",
|
|
311
321
|
"V1AnimationCreateBodyStyle",
|
|
@@ -378,6 +388,8 @@ __all__ = [
|
|
|
378
388
|
"_SerializerV1AiTalkingPhotoCreateBody",
|
|
379
389
|
"_SerializerV1AiTalkingPhotoCreateBodyAssets",
|
|
380
390
|
"_SerializerV1AiTalkingPhotoCreateBodyStyle",
|
|
391
|
+
"_SerializerV1AiVoiceGeneratorCreateBody",
|
|
392
|
+
"_SerializerV1AiVoiceGeneratorCreateBodyStyle",
|
|
381
393
|
"_SerializerV1AnimationCreateBody",
|
|
382
394
|
"_SerializerV1AnimationCreateBodyAssets",
|
|
383
395
|
"_SerializerV1AnimationCreateBodyStyle",
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
import typing
|
|
3
|
+
import typing_extensions
|
|
4
|
+
|
|
5
|
+
from .v1_ai_voice_generator_create_body_style import (
|
|
6
|
+
V1AiVoiceGeneratorCreateBodyStyle,
|
|
7
|
+
_SerializerV1AiVoiceGeneratorCreateBodyStyle,
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class V1AiVoiceGeneratorCreateBody(typing_extensions.TypedDict):
|
|
12
|
+
"""
|
|
13
|
+
V1AiVoiceGeneratorCreateBody
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
name: typing_extensions.NotRequired[str]
|
|
17
|
+
"""
|
|
18
|
+
The name of audio. This value is mainly used for your own identification of the audio.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
style: typing_extensions.Required[V1AiVoiceGeneratorCreateBodyStyle]
|
|
22
|
+
"""
|
|
23
|
+
The content used to generate speech.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class _SerializerV1AiVoiceGeneratorCreateBody(pydantic.BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
Serializer for V1AiVoiceGeneratorCreateBody handling case conversions
|
|
30
|
+
and file omissions as dictated by the API
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
model_config = pydantic.ConfigDict(
|
|
34
|
+
populate_by_name=True,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
name: typing.Optional[str] = pydantic.Field(alias="name", default=None)
|
|
38
|
+
style: _SerializerV1AiVoiceGeneratorCreateBodyStyle = pydantic.Field(
|
|
39
|
+
alias="style",
|
|
40
|
+
)
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
import typing_extensions
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class V1AiVoiceGeneratorCreateBodyStyle(typing_extensions.TypedDict):
|
|
6
|
+
"""
|
|
7
|
+
The content used to generate speech.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
prompt: typing_extensions.Required[str]
|
|
11
|
+
"""
|
|
12
|
+
Text used to generate speech. Starter tier users can use up to 200 characters, while Creator, Pro, or Business users can use up to 1000.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
voice_name: typing_extensions.Required[
|
|
16
|
+
typing_extensions.Literal[
|
|
17
|
+
"Barack Obama",
|
|
18
|
+
"Donald Trump",
|
|
19
|
+
"Elon Musk",
|
|
20
|
+
"Joe Biden",
|
|
21
|
+
"Joe Rogan",
|
|
22
|
+
"Kanye West",
|
|
23
|
+
"Kim Kardashian",
|
|
24
|
+
"Mark Zuckerberg",
|
|
25
|
+
"Morgan Freeman",
|
|
26
|
+
"Taylor Swift",
|
|
27
|
+
]
|
|
28
|
+
]
|
|
29
|
+
"""
|
|
30
|
+
The voice to use for the speech. Available voices: Elon Musk, Mark Zuckerberg, Joe Rogan, Barack Obama, Morgan Freeman, Kanye West, Donald Trump, Joe Biden, Kim Kardashian, Taylor Swift
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class _SerializerV1AiVoiceGeneratorCreateBodyStyle(pydantic.BaseModel):
|
|
35
|
+
"""
|
|
36
|
+
Serializer for V1AiVoiceGeneratorCreateBodyStyle handling case conversions
|
|
37
|
+
and file omissions as dictated by the API
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
model_config = pydantic.ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
prompt: str = pydantic.Field(
|
|
45
|
+
alias="prompt",
|
|
46
|
+
)
|
|
47
|
+
voice_name: typing_extensions.Literal[
|
|
48
|
+
"Barack Obama",
|
|
49
|
+
"Donald Trump",
|
|
50
|
+
"Elon Musk",
|
|
51
|
+
"Joe Biden",
|
|
52
|
+
"Joe Rogan",
|
|
53
|
+
"Kanye West",
|
|
54
|
+
"Kim Kardashian",
|
|
55
|
+
"Mark Zuckerberg",
|
|
56
|
+
"Morgan Freeman",
|
|
57
|
+
"Taylor Swift",
|
|
58
|
+
] = pydantic.Field(
|
|
59
|
+
alias="voice_name",
|
|
60
|
+
)
|
|
@@ -19,6 +19,7 @@ class V1VideoToVideoCreateBodyStyle(typing_extensions.TypedDict):
|
|
|
19
19
|
"Avatar",
|
|
20
20
|
"Black Spiderman",
|
|
21
21
|
"Boba Fett",
|
|
22
|
+
"Bold Anime",
|
|
22
23
|
"Celestial Skin",
|
|
23
24
|
"Chinese Swordsmen",
|
|
24
25
|
"Clay",
|
|
@@ -53,10 +54,12 @@ class V1VideoToVideoCreateBodyStyle(typing_extensions.TypedDict):
|
|
|
53
54
|
"Oil Painting",
|
|
54
55
|
"On Fire",
|
|
55
56
|
"Origami",
|
|
57
|
+
"Painterly Anime",
|
|
56
58
|
"Pixar",
|
|
57
59
|
"Pixel",
|
|
58
60
|
"Power Armor",
|
|
59
61
|
"Power Ranger",
|
|
62
|
+
"Realistic Anime",
|
|
60
63
|
"Retro Anime",
|
|
61
64
|
"Retro Sci-Fi",
|
|
62
65
|
"Samurai",
|
|
@@ -78,7 +81,7 @@ class V1VideoToVideoCreateBodyStyle(typing_extensions.TypedDict):
|
|
|
78
81
|
]
|
|
79
82
|
]
|
|
80
83
|
|
|
81
|
-
model: typing_extensions.
|
|
84
|
+
model: typing_extensions.NotRequired[
|
|
82
85
|
typing_extensions.Literal[
|
|
83
86
|
"Absolute Reality", "Dreamshaper", "Flat 2D Anime", "default"
|
|
84
87
|
]
|
|
@@ -90,12 +93,12 @@ class V1VideoToVideoCreateBodyStyle(typing_extensions.TypedDict):
|
|
|
90
93
|
* `default` - use the default recommended model for the selected art style.
|
|
91
94
|
"""
|
|
92
95
|
|
|
93
|
-
prompt: typing_extensions.
|
|
96
|
+
prompt: typing_extensions.NotRequired[typing.Optional[str]]
|
|
94
97
|
"""
|
|
95
98
|
The prompt used for the video. Prompt is required if `prompt_type` is `custom` or `append_default`. If `prompt_type` is `default`, then the `prompt` value passed will be ignored.
|
|
96
99
|
"""
|
|
97
100
|
|
|
98
|
-
prompt_type: typing_extensions.
|
|
101
|
+
prompt_type: typing_extensions.NotRequired[
|
|
99
102
|
typing_extensions.Literal["append_default", "custom", "default"]
|
|
100
103
|
]
|
|
101
104
|
"""
|
|
@@ -104,7 +107,7 @@ class V1VideoToVideoCreateBodyStyle(typing_extensions.TypedDict):
|
|
|
104
107
|
* `append_default` - Add the default recommended prompt to the end of the prompt passed in the API.
|
|
105
108
|
"""
|
|
106
109
|
|
|
107
|
-
version: typing_extensions.
|
|
110
|
+
version: typing_extensions.NotRequired[
|
|
108
111
|
typing_extensions.Literal["default", "v1", "v2"]
|
|
109
112
|
]
|
|
110
113
|
"""
|
|
@@ -134,6 +137,7 @@ class _SerializerV1VideoToVideoCreateBodyStyle(pydantic.BaseModel):
|
|
|
134
137
|
"Avatar",
|
|
135
138
|
"Black Spiderman",
|
|
136
139
|
"Boba Fett",
|
|
140
|
+
"Bold Anime",
|
|
137
141
|
"Celestial Skin",
|
|
138
142
|
"Chinese Swordsmen",
|
|
139
143
|
"Clay",
|
|
@@ -168,10 +172,12 @@ class _SerializerV1VideoToVideoCreateBodyStyle(pydantic.BaseModel):
|
|
|
168
172
|
"Oil Painting",
|
|
169
173
|
"On Fire",
|
|
170
174
|
"Origami",
|
|
175
|
+
"Painterly Anime",
|
|
171
176
|
"Pixar",
|
|
172
177
|
"Pixel",
|
|
173
178
|
"Power Armor",
|
|
174
179
|
"Power Ranger",
|
|
180
|
+
"Realistic Anime",
|
|
175
181
|
"Retro Anime",
|
|
176
182
|
"Retro Sci-Fi",
|
|
177
183
|
"Samurai",
|
|
@@ -193,19 +199,15 @@ class _SerializerV1VideoToVideoCreateBodyStyle(pydantic.BaseModel):
|
|
|
193
199
|
] = pydantic.Field(
|
|
194
200
|
alias="art_style",
|
|
195
201
|
)
|
|
196
|
-
model:
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
)
|
|
201
|
-
prompt: typing.Optional[str] = pydantic.Field(
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
)
|
|
208
|
-
)
|
|
209
|
-
version: typing_extensions.Literal["default", "v1", "v2"] = pydantic.Field(
|
|
210
|
-
alias="version",
|
|
202
|
+
model: typing.Optional[
|
|
203
|
+
typing_extensions.Literal[
|
|
204
|
+
"Absolute Reality", "Dreamshaper", "Flat 2D Anime", "default"
|
|
205
|
+
]
|
|
206
|
+
] = pydantic.Field(alias="model", default=None)
|
|
207
|
+
prompt: typing.Optional[str] = pydantic.Field(alias="prompt", default=None)
|
|
208
|
+
prompt_type: typing.Optional[
|
|
209
|
+
typing_extensions.Literal["append_default", "custom", "default"]
|
|
210
|
+
] = pydantic.Field(alias="prompt_type", default=None)
|
|
211
|
+
version: typing.Optional[typing_extensions.Literal["default", "v1", "v2"]] = (
|
|
212
|
+
pydantic.Field(alias="version", default=None)
|
|
211
213
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: magic_hour
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.40.0
|
|
4
4
|
Summary: Python SDK for Magic Hour API
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -223,11 +223,21 @@ download_urls = result.downloads
|
|
|
223
223
|
* [create](magic_hour/resources/v1/ai_talking_photo/README.md#create) - AI Talking Photo
|
|
224
224
|
* [generate](magic_hour/resources/v1/ai_talking_photo/README.md#generate) - Ai Talking Photo Generate Workflow
|
|
225
225
|
|
|
226
|
+
### [v1.ai_voice_generator](magic_hour/resources/v1/ai_voice_generator/README.md)
|
|
227
|
+
|
|
228
|
+
* [create](magic_hour/resources/v1/ai_voice_generator/README.md#create) - AI Voice Generator
|
|
229
|
+
|
|
226
230
|
### [v1.animation](magic_hour/resources/v1/animation/README.md)
|
|
227
231
|
|
|
228
232
|
* [create](magic_hour/resources/v1/animation/README.md#create) - Animation
|
|
229
233
|
* [generate](magic_hour/resources/v1/animation/README.md#generate) - Animation Generate Workflow
|
|
230
234
|
|
|
235
|
+
### [v1.audio_projects](magic_hour/resources/v1/audio_projects/README.md)
|
|
236
|
+
|
|
237
|
+
* [delete](magic_hour/resources/v1/audio_projects/README.md#delete) - Delete audio
|
|
238
|
+
* [get](magic_hour/resources/v1/audio_projects/README.md#get) - Get audio details
|
|
239
|
+
|
|
240
|
+
|
|
231
241
|
### [v1.auto_subtitle_generator](magic_hour/resources/v1/auto_subtitle_generator/README.md)
|
|
232
242
|
|
|
233
243
|
* [create](magic_hour/resources/v1/auto_subtitle_generator/README.md#create) - Auto Subtitle Generator
|
|
@@ -1,95 +1,101 @@
|
|
|
1
|
-
magic_hour/README.md,sha256=
|
|
1
|
+
magic_hour/README.md,sha256=15rozv0wAc_s4ptTaEHUCNcZKYo8LAim9HTfKOeKTNQ,2261
|
|
2
2
|
magic_hour/__init__.py,sha256=ypWA4msPy3T-U2PAyRSAXIQc0m2J9aY8wXnfmIupAEc,214
|
|
3
3
|
magic_hour/client.py,sha256=oHuz0FRKuedtwwPSkFLaSjoEWt_0N57hJ0rEDKbNcFw,1712
|
|
4
|
-
magic_hour/environment.py,sha256=
|
|
4
|
+
magic_hour/environment.py,sha256=aH42mIzRto59IcTwIrthVuD5aPhMGgPryx90wUNgl7k,535
|
|
5
5
|
magic_hour/helpers/__init__.py,sha256=pO6sgb41iVe_IN2dApfl2l3BXOWIb4i5pHl_if-oo_E,176
|
|
6
6
|
magic_hour/helpers/download.py,sha256=wZR-gddqU2rWzltHN2zqqaHaShHG33yx7BIlUn1jXG8,2212
|
|
7
7
|
magic_hour/helpers/logger.py,sha256=Z8ljney670Kc8DaSzlHdH9N8RXmj2_qWPovLUoC0tNY,210
|
|
8
|
-
magic_hour/resources/v1/README.md,sha256=
|
|
8
|
+
magic_hour/resources/v1/README.md,sha256=P5Y3atMFloJotSgJWt5Wtz2z9YnV3B5bcWBu-vppzP8,1793
|
|
9
9
|
magic_hour/resources/v1/__init__.py,sha256=Aj0sjVcoijjQyieNBxv2_uewPYC2vO2UG-ehoBgCz5E,86
|
|
10
|
-
magic_hour/resources/v1/ai_clothes_changer/README.md,sha256=
|
|
10
|
+
magic_hour/resources/v1/ai_clothes_changer/README.md,sha256=Hz3z8ATl1k_vvOKGjv86KJfsCvNZVAAgsZFLUOiqigc,4575
|
|
11
11
|
magic_hour/resources/v1/ai_clothes_changer/__init__.py,sha256=6W_Y2HxG2sDOBiJyzngK3Q2S3xfQgpK-j8xFRmBAhbQ,142
|
|
12
12
|
magic_hour/resources/v1/ai_clothes_changer/client.py,sha256=CdSE1ZiygLFusVpgCCFoqgIu1z8geN2XVUMxxgsSkAA,9963
|
|
13
|
-
magic_hour/resources/v1/ai_face_editor/README.md,sha256=
|
|
13
|
+
magic_hour/resources/v1/ai_face_editor/README.md,sha256=eEJviyfKoF4rkfapCn5tCoqTaViES_7G-Hzd9S2VUbw,7273
|
|
14
14
|
magic_hour/resources/v1/ai_face_editor/__init__.py,sha256=RY8GBMQcqsDFbFcUuK-4LPvablq-U9XmSSlQk4HLKmM,126
|
|
15
15
|
magic_hour/resources/v1/ai_face_editor/client.py,sha256=qo8Lj7s0a9vanOMzWb5lw0FyrrcstQ-kUvfBkiBipGY,12313
|
|
16
|
-
magic_hour/resources/v1/ai_gif_generator/README.md,sha256=
|
|
16
|
+
magic_hour/resources/v1/ai_gif_generator/README.md,sha256=7PQWB_Th5xSawXsoEdcPCPbXj5c4skDk1RtRLWEBoSg,3163
|
|
17
17
|
magic_hour/resources/v1/ai_gif_generator/__init__.py,sha256=SG_WmxUnpQWlfNQoHfdXPEGQEPC0WZPgom8ATaR9jiY,134
|
|
18
18
|
magic_hour/resources/v1/ai_gif_generator/client.py,sha256=IqRoCAkVzPge6lx5UEZc_XrVUts4yKXItU9W-SA02GM,9156
|
|
19
|
-
magic_hour/resources/v1/ai_headshot_generator/README.md,sha256=
|
|
19
|
+
magic_hour/resources/v1/ai_headshot_generator/README.md,sha256=ec9KgCy8qQsareWPQ2VKdEGSBC3m6S0bvY8XYKrDaLo,3861
|
|
20
20
|
magic_hour/resources/v1/ai_headshot_generator/__init__.py,sha256=4WZ3jfrL2yPhQaPalMJrUEykwUoF3KBtop2VJEij-0s,154
|
|
21
21
|
magic_hour/resources/v1/ai_headshot_generator/client.py,sha256=Ts_aLrp6M825opYZsJ66g1Ma4XOzvKwNdVFmUC4KSkQ,9979
|
|
22
|
-
magic_hour/resources/v1/ai_image_editor/README.md,sha256=
|
|
22
|
+
magic_hour/resources/v1/ai_image_editor/README.md,sha256=ycoJuzVq44yZaAQ5we_w1CKHo0mf1rv0ytO4X0WrBMQ,3749
|
|
23
23
|
magic_hour/resources/v1/ai_image_editor/__init__.py,sha256=VvGqS2j_VQ7iz8TueD2R2L0YLlRsqRyGBSP4Tf-Uml8,130
|
|
24
24
|
magic_hour/resources/v1/ai_image_editor/client.py,sha256=77prh_ckyXxfEhIENrDAVcQRqTiAJ9ruDJO6UWpyRlU,9483
|
|
25
|
-
magic_hour/resources/v1/ai_image_generator/README.md,sha256=
|
|
25
|
+
magic_hour/resources/v1/ai_image_generator/README.md,sha256=5WodVAVBRn8a0VQ1AvJelrNcB9znEoD9P-mKoP9wKd8,3582
|
|
26
26
|
magic_hour/resources/v1/ai_image_generator/__init__.py,sha256=qZws7N5CALYAbnIUc2ERV8Cy-QJmHcJ9tU7W-epEnaQ,142
|
|
27
27
|
magic_hour/resources/v1/ai_image_generator/client.py,sha256=FQmoaq1pgnbs02Y6lzhaTyIYEUUGeTbxA1DWTl2ttJc,10102
|
|
28
|
-
magic_hour/resources/v1/ai_image_upscaler/README.md,sha256=
|
|
28
|
+
magic_hour/resources/v1/ai_image_upscaler/README.md,sha256=TFwDgJYuASNUlfbKWXqU7rLrmmTty-GPbwK7fMemCNI,4130
|
|
29
29
|
magic_hour/resources/v1/ai_image_upscaler/__init__.py,sha256=9b1-2XfnAVa4qE3S-4WL8vN3wuqLkUuHKjdl_km8hUc,138
|
|
30
30
|
magic_hour/resources/v1/ai_image_upscaler/client.py,sha256=WPqVMzN1-O1IVxkAMx0O1M4VRZ1cl7QPi94Ej2E5sBM,10713
|
|
31
|
-
magic_hour/resources/v1/ai_meme_generator/README.md,sha256=
|
|
31
|
+
magic_hour/resources/v1/ai_meme_generator/README.md,sha256=oSCtm3jFC8s63ePQf6u9y8SvpX0g68rn_ZvWRox5EBw,3546
|
|
32
32
|
magic_hour/resources/v1/ai_meme_generator/__init__.py,sha256=x4vtin1KKvoA-va7vhaQ91c__M2z3PmDySLX7yJpRDA,138
|
|
33
33
|
magic_hour/resources/v1/ai_meme_generator/client.py,sha256=jtWQj_k_MZhoyT1nhXkg8YIeVTIPHw66G-tmGcZlOa4,8679
|
|
34
|
-
magic_hour/resources/v1/ai_photo_editor/README.md,sha256=
|
|
34
|
+
magic_hour/resources/v1/ai_photo_editor/README.md,sha256=nHjkNOIV-bJHoXVTewGjGfxcvBAmOSNSSvkThkUE13g,7212
|
|
35
35
|
magic_hour/resources/v1/ai_photo_editor/__init__.py,sha256=RPG6WaL2KN_DmgrtxImA_jNnEDMm-Ku2o2m2EnNwxts,130
|
|
36
36
|
magic_hour/resources/v1/ai_photo_editor/client.py,sha256=xdNR8PX2C0VHVETTjFIpcMZygOMnFKrIQSYr6AF5uVk,13221
|
|
37
|
-
magic_hour/resources/v1/ai_qr_code_generator/README.md,sha256=
|
|
37
|
+
magic_hour/resources/v1/ai_qr_code_generator/README.md,sha256=OAMDsZ9QTL652j0KO_xgps2PkhxC9CPDGRgXVyVU7Zs,3382
|
|
38
38
|
magic_hour/resources/v1/ai_qr_code_generator/__init__.py,sha256=HnSTg7tB8M5LibZoCDRdE5Q71efmiqZIkNEve5SO1Mg,146
|
|
39
39
|
magic_hour/resources/v1/ai_qr_code_generator/client.py,sha256=rLw0V6cE2AncqM9Bz_mRXWkmkdVasS44BBWLLX4GQSc,8771
|
|
40
|
-
magic_hour/resources/v1/ai_talking_photo/README.md,sha256=
|
|
40
|
+
magic_hour/resources/v1/ai_talking_photo/README.md,sha256=C90lxKPpk2fgjingEZlYQ6kM-jL1kT2m9aIvCwvlXP8,5467
|
|
41
41
|
magic_hour/resources/v1/ai_talking_photo/__init__.py,sha256=ZTDD_IRBoR7GSdGWCVEK2-LOEsKUdGEHZZvDHa9MOnA,134
|
|
42
42
|
magic_hour/resources/v1/ai_talking_photo/client.py,sha256=kbFM3peM5NEzUle1miup7Xe2q_HwL7u7kzuD1DkcEBc,12529
|
|
43
|
-
magic_hour/resources/v1/
|
|
43
|
+
magic_hour/resources/v1/ai_voice_generator/README.md,sha256=A8K356cP6Q2Q83OP--qdjpTmCo_TcehvHUBQEkPChXE,1837
|
|
44
|
+
magic_hour/resources/v1/ai_voice_generator/__init__.py,sha256=Zl1HuxfafN3hzJCCCD_YyCX_y2v4uAihSDAC8GCcE8U,142
|
|
45
|
+
magic_hour/resources/v1/ai_voice_generator/client.py,sha256=6XV4PRkRZqqLe3q8OVNO-tGEpsR59QsaNTMlQE3yGGQ,3922
|
|
46
|
+
magic_hour/resources/v1/animation/README.md,sha256=UFA-uJYcATgNZ0MBtFUgC3fvXICLPzAcTeDhR8e6JDs,7601
|
|
44
47
|
magic_hour/resources/v1/animation/__init__.py,sha256=M6KUe6TEZl_DAdyn1HFQ2kHYanZo6xy3mvUdCN264hQ,114
|
|
45
48
|
magic_hour/resources/v1/animation/client.py,sha256=vVoYF6P-OU83kAXwZyRJngv6C_zoArXXuM6nTPy-Jvw,15447
|
|
46
|
-
magic_hour/resources/v1/
|
|
49
|
+
magic_hour/resources/v1/audio_projects/README.md,sha256=8OXRVddZNw27p9OyHyq-2OEgDdiUZ7gTGILIlrs7QSA,2596
|
|
50
|
+
magic_hour/resources/v1/audio_projects/__init__.py,sha256=zPN8qohWZr3d1TXpCLQHfj7jK8blNDOEx7_9K63MG68,130
|
|
51
|
+
magic_hour/resources/v1/audio_projects/client.py,sha256=yeOk77fv9YXnk6h1kZJFZE0cMYqsw462IWq8YwcNR7w,5784
|
|
52
|
+
magic_hour/resources/v1/auto_subtitle_generator/README.md,sha256=re_vl_O6h1D78qZdMymj2gOXxbcB0pGCk9NfVVV2qds,5308
|
|
47
53
|
magic_hour/resources/v1/auto_subtitle_generator/__init__.py,sha256=dnWFEiSdIl3AwFVprqWHSMzqpeHgZz9wPEMxm7c3Xnc,162
|
|
48
54
|
magic_hour/resources/v1/auto_subtitle_generator/client.py,sha256=QZREuGcgIVc3hNaBvTfDuBRj0pvnr_uu0YzFkFhsd_s,14803
|
|
49
|
-
magic_hour/resources/v1/client.py,sha256=
|
|
50
|
-
magic_hour/resources/v1/face_detection/README.md,sha256=
|
|
55
|
+
magic_hour/resources/v1/client.py,sha256=VL5IrdvpP6WxuJdmTjEwSXeA8M04zyyHxWsJmyLfxU4,8164
|
|
56
|
+
magic_hour/resources/v1/face_detection/README.md,sha256=4E6WV9nEB3W_lqjSMIP2dhAVfDNGwSq-SbY4ppG6CNM,5248
|
|
51
57
|
magic_hour/resources/v1/face_detection/__init__.py,sha256=gGsbucNf0ibSUORv4FBlzTmMHAKEnPZuIqmhh7Qjxfk,246
|
|
52
58
|
magic_hour/resources/v1/face_detection/client.py,sha256=v35yArONM6OuQ0Ze_fwpHt_eSHdYcs4teR0gRMjcGdA,14831
|
|
53
|
-
magic_hour/resources/v1/face_swap/README.md,sha256=
|
|
59
|
+
magic_hour/resources/v1/face_swap/README.md,sha256=l1I1M7b1jRx2hu8LUh-zriigM3q9OLDL6NRt51zYtig,8577
|
|
54
60
|
magic_hour/resources/v1/face_swap/__init__.py,sha256=lyg5uAHyYHEUVAiAZtP3zwjGCEGqq8IWbQKexVdhr00,110
|
|
55
61
|
magic_hour/resources/v1/face_swap/client.py,sha256=AYkOAoCGrGvhMeuQe9yTad4krx81S9S5e8l5wNIn3RI,19783
|
|
56
|
-
magic_hour/resources/v1/face_swap_photo/README.md,sha256=
|
|
62
|
+
magic_hour/resources/v1/face_swap_photo/README.md,sha256=yeh3LT1oOiEPGfaoCzlQPpSla9Ws2b08gNLMS8AnBZk,5946
|
|
57
63
|
magic_hour/resources/v1/face_swap_photo/__init__.py,sha256=NZEplYX5kDPL_0qY0Q5tuxhDevipN0otByTYKMmF_1k,130
|
|
58
64
|
magic_hour/resources/v1/face_swap_photo/client.py,sha256=dXolLVvto4h13QcEYd2gQ1E-aNn5EAAi5QwUl1durOU,11739
|
|
59
|
-
magic_hour/resources/v1/files/README.md,sha256=
|
|
65
|
+
magic_hour/resources/v1/files/README.md,sha256=UqP0BnheWlcb6vBSIpyuYU2xt9fp0kR5lrMvYFS3km0,1070
|
|
60
66
|
magic_hour/resources/v1/files/__init__.py,sha256=ucXmaXDdZqXfRhnnioJeQAXeRLzBDb44gTfWijrub28,98
|
|
61
67
|
magic_hour/resources/v1/files/client.py,sha256=wVIKaz7NzKsdASbKyhQzcaHrFkluEAQBtZ5fynebUSY,13281
|
|
62
68
|
magic_hour/resources/v1/files/client_test.py,sha256=4mUFWuxr9R0YmeZ468KPvt8p4zUvZBhPcbszHBtLE4s,13970
|
|
63
|
-
magic_hour/resources/v1/files/upload_urls/README.md,sha256=
|
|
69
|
+
magic_hour/resources/v1/files/upload_urls/README.md,sha256=gXDVub5CeAeVE7uX-26_ghvqwsxr-29gz_x5Zlw82J4,2354
|
|
64
70
|
magic_hour/resources/v1/files/upload_urls/__init__.py,sha256=hRp0s_emx-wib7z42V4L9VzYR9MQ3hnmS5bNv4QtfFM,118
|
|
65
71
|
magic_hour/resources/v1/files/upload_urls/client.py,sha256=ZosQgveds46TZJQzZO5qWT6qINEVrKcLiYjRmk3evKs,5218
|
|
66
|
-
magic_hour/resources/v1/image_background_remover/README.md,sha256=
|
|
72
|
+
magic_hour/resources/v1/image_background_remover/README.md,sha256=BHN9v1SbJggSuGzMhnLWxe78oUtRg8NJO1VqqiK4_HQ,4528
|
|
67
73
|
magic_hour/resources/v1/image_background_remover/__init__.py,sha256=Vb_e8zKEh7bdrq0q1175DqyOd1ptPBUIfSKSLFPBVU4,166
|
|
68
74
|
magic_hour/resources/v1/image_background_remover/client.py,sha256=SPRZjRJPTu2zpRRq3BRna9Rl0fywOBfo5DgNhn3gqdM,9367
|
|
69
|
-
magic_hour/resources/v1/image_projects/README.md,sha256=
|
|
75
|
+
magic_hour/resources/v1/image_projects/README.md,sha256=hfY93TVY_UTH0RMAZfSNku9gc3mMYL1scJUJ6V8QWs8,4406
|
|
70
76
|
magic_hour/resources/v1/image_projects/__init__.py,sha256=FtA1OC8s-CCOwQ0AaUqlkt9IC0CIZ4_p65E97m3ZcGE,246
|
|
71
77
|
magic_hour/resources/v1/image_projects/client.py,sha256=gDhND6b2KkIHEbAHJgYUjQeCsxLFGi2P7zTjg2CDyjc,10993
|
|
72
78
|
magic_hour/resources/v1/image_projects/client_test.py,sha256=5KH4s0vG13SEUkB6pAa9m7M2dqBUoqIERPhAu1DgPfA,16015
|
|
73
|
-
magic_hour/resources/v1/image_to_video/README.md,sha256=
|
|
79
|
+
magic_hour/resources/v1/image_to_video/README.md,sha256=3GTymNbshlYlcVO4hxRXJrb27PtyNL0zb_1SZsSOoT4,6272
|
|
74
80
|
magic_hour/resources/v1/image_to_video/__init__.py,sha256=tY_ABo6evwKQBRSq-M84lNX-pXqmxoozukmrO6NhCgA,126
|
|
75
81
|
magic_hour/resources/v1/image_to_video/client.py,sha256=fUajB5-kKzT3WC5u7EAeY8_N4k1_r36JmwML4GquQwc,17392
|
|
76
|
-
magic_hour/resources/v1/lip_sync/README.md,sha256=
|
|
82
|
+
magic_hour/resources/v1/lip_sync/README.md,sha256=Qm1RrQCA-PfWwlrdbpMo3ycdxlHAsU23N9MEZ-1MALM,6725
|
|
77
83
|
magic_hour/resources/v1/lip_sync/__init__.py,sha256=MlKUAoHNSKcuNzVyqNfLnLtD_PsqEn3l1TtVpPC1JqQ,106
|
|
78
84
|
magic_hour/resources/v1/lip_sync/client.py,sha256=_2nMKC7ApWNuB6xFQA91d6s7SK_O28tj2kMvFNDlz90,19035
|
|
79
|
-
magic_hour/resources/v1/photo_colorizer/README.md,sha256=
|
|
85
|
+
magic_hour/resources/v1/photo_colorizer/README.md,sha256=A2rIQTr-EBGlSLVqk2Q_pusNJKn7xcSWbhNDArJRA1Q,3429
|
|
80
86
|
magic_hour/resources/v1/photo_colorizer/__init__.py,sha256=7rDjkeUzWG5GXw_4RD1XH7Ygy-_0_OUFX99IgE_RVbE,134
|
|
81
87
|
magic_hour/resources/v1/photo_colorizer/client.py,sha256=mW5VYDmsvU9phtkiY008zarM1CCaWTMTeOTY4zaWDfI,8861
|
|
82
|
-
magic_hour/resources/v1/text_to_video/README.md,sha256=
|
|
88
|
+
magic_hour/resources/v1/text_to_video/README.md,sha256=AmM-Ea5DJNj4dou8fuK53Zj6u_8tzUsypc53Gc-Rz0k,4710
|
|
83
89
|
magic_hour/resources/v1/text_to_video/__init__.py,sha256=F18iHSi9tuYSdgpatznBzb7lbSySNpK-82w96-Om_k4,122
|
|
84
90
|
magic_hour/resources/v1/text_to_video/client.py,sha256=Cx7NjpcWv_5Ucl42K09jYGUzJ9l04bvBQUlBf9Fk7dI,13620
|
|
85
|
-
magic_hour/resources/v1/video_projects/README.md,sha256=
|
|
91
|
+
magic_hour/resources/v1/video_projects/README.md,sha256=KwoFWhLpL5BE2IST4duzO1gESVc_RP35uR4IXwutIlg,4581
|
|
86
92
|
magic_hour/resources/v1/video_projects/__init__.py,sha256=Pm2S3V2tVycoR5x5zPiFCZSoeY15s5WJaR0pLkJq-Pg,246
|
|
87
93
|
magic_hour/resources/v1/video_projects/client.py,sha256=-cB6zYCKNHldfIS0LwapvhjPi9UoUKaPGrXqMXdYlGU,10955
|
|
88
94
|
magic_hour/resources/v1/video_projects/client_test.py,sha256=iOJWM0cFg4QmFOYNVRRvMPX7nCg-1rCnSUh_1aDq96A,15967
|
|
89
|
-
magic_hour/resources/v1/video_to_video/README.md,sha256=
|
|
95
|
+
magic_hour/resources/v1/video_to_video/README.md,sha256=vdV8gqqEiYamWt5xGcd-xQn85tgQZFCUULSZRmb9TJ0,8104
|
|
90
96
|
magic_hour/resources/v1/video_to_video/__init__.py,sha256=1SHaRLlsrlBkdxxKBYgdbHrGATlRvqlXc22RpjjHaOA,126
|
|
91
|
-
magic_hour/resources/v1/video_to_video/client.py,sha256=
|
|
92
|
-
magic_hour/types/models/__init__.py,sha256=
|
|
97
|
+
magic_hour/resources/v1/video_to_video/client.py,sha256=WwdTRgfmHGQRfQy-Hhu3W-ERDkIjo3GEt6i4tIA9Eiw,19988
|
|
98
|
+
magic_hour/types/models/__init__.py,sha256=moeibrMK2jaQV6WVBYxDCUeLSxa50nNTvV1t_xkbnq4,4553
|
|
93
99
|
magic_hour/types/models/v1_ai_clothes_changer_create_response.py,sha256=rQJqlDf7Ql46hR4eAepU6SnZS3fH-gewmSJ-OvEY5K0,1102
|
|
94
100
|
magic_hour/types/models/v1_ai_face_editor_create_response.py,sha256=pGpfZMCRhhDYCV-tj3hfmuXvQPhb44csnyrcwh9tfQM,1098
|
|
95
101
|
magic_hour/types/models/v1_ai_gif_generator_create_response.py,sha256=3T7PE17mdU9msZTfl2Gw-u1mTbjZiJm7gAxgIICloN4,1100
|
|
@@ -101,7 +107,11 @@ magic_hour/types/models/v1_ai_meme_generator_create_response.py,sha256=oShaKV0dK
|
|
|
101
107
|
magic_hour/types/models/v1_ai_photo_editor_create_response.py,sha256=HHIFywFl57ZvfBgxnlwFgKP39BxGRuN57o4bWiPzsOA,1099
|
|
102
108
|
magic_hour/types/models/v1_ai_qr_code_generator_create_response.py,sha256=dwTaT_H6h6yJ4tJti_W0bpLjglK_hiZk14NJnsD_1Gw,1103
|
|
103
109
|
magic_hour/types/models/v1_ai_talking_photo_create_response.py,sha256=4dnMUHVcVAVxywGPj_2wcH_BOCjS6qh_loyMszJVzBY,1348
|
|
110
|
+
magic_hour/types/models/v1_ai_voice_generator_create_response.py,sha256=o65cf7AV04klVSulX60G4SevyLPIURlLBAO_GojGMRI,856
|
|
104
111
|
magic_hour/types/models/v1_animation_create_response.py,sha256=EXgZ-7dGPSKgGDyG72r_273vxXYsOkKHbvmujmmCE-c,1343
|
|
112
|
+
magic_hour/types/models/v1_audio_projects_get_response.py,sha256=-U3WxEsvb_J1oNkskn-cU23SJt18Na9GTiEjhlGYGGE,2097
|
|
113
|
+
magic_hour/types/models/v1_audio_projects_get_response_downloads_item.py,sha256=Yd9qkIWLzKMvSlOmJSBjPJA27qE6WjGiRsTHtu2QSeA,410
|
|
114
|
+
magic_hour/types/models/v1_audio_projects_get_response_error.py,sha256=I_YZDOB53EETagPyV71VfCNyaYGJzHfkOS3bPRNqlog,568
|
|
105
115
|
magic_hour/types/models/v1_auto_subtitle_generator_create_response.py,sha256=HGwpgKkYBToPRhbGX7SfjP1HwaAQF-mMszxGNsP_Yhg,1355
|
|
106
116
|
magic_hour/types/models/v1_face_detection_create_response.py,sha256=91cx8WOB6jN99gfc14tuh29jDD8xc5ba6OiGJcA8Eyk,625
|
|
107
117
|
magic_hour/types/models/v1_face_detection_get_response.py,sha256=-g_tHwqL1A4g8oygpKsNMOUTjpyVJl6B-xWoQyZxDJc,1126
|
|
@@ -123,7 +133,7 @@ magic_hour/types/models/v1_video_projects_get_response_download.py,sha256=nudDCN
|
|
|
123
133
|
magic_hour/types/models/v1_video_projects_get_response_downloads_item.py,sha256=DlUuLBSGa7jWoozxferkaOsGc4jASItcjjWbBXGu620,410
|
|
124
134
|
magic_hour/types/models/v1_video_projects_get_response_error.py,sha256=49QxnXAmYHcvSWuuhbQZeGlUfqVcO4YwZ414GczQnvA,568
|
|
125
135
|
magic_hour/types/models/v1_video_to_video_create_response.py,sha256=HCquU2Dciu6jCvhlpce8sGg1CypZngvtrvkwyCWOkSY,1346
|
|
126
|
-
magic_hour/types/params/__init__.py,sha256=
|
|
136
|
+
magic_hour/types/params/__init__.py,sha256=Cn8pQvTSQ6tcJS5KeMv4-QkeujQcHfgtyGVXnBBmCE8,16498
|
|
127
137
|
magic_hour/types/params/v1_ai_clothes_changer_create_body.py,sha256=dicJkS-1OJs28UlogAExFJTZ5ysb-cUnimL6rbHsRzo,1075
|
|
128
138
|
magic_hour/types/params/v1_ai_clothes_changer_create_body_assets.py,sha256=Ej1YLJgiJCJ9wBldfiSzORivv02cWGlyIThPOXn1YM0,1895
|
|
129
139
|
magic_hour/types/params/v1_ai_clothes_changer_generate_body_assets.py,sha256=iu6Dxx8WD12uINYp20Y7YPc2zRF8HJLxfBgzp6V7-gY,1018
|
|
@@ -159,6 +169,8 @@ magic_hour/types/params/v1_ai_talking_photo_create_body.py,sha256=2UjXVz2uKL3M6q
|
|
|
159
169
|
magic_hour/types/params/v1_ai_talking_photo_create_body_assets.py,sha256=PI3lZWCidt1wJtuHeNwV8R2V10ZK6rif5LYraKqtqko,1574
|
|
160
170
|
magic_hour/types/params/v1_ai_talking_photo_create_body_style.py,sha256=bzt72Mdhgj_ItRkHetyQxB2dR9n4TLLog-WF-RyOD8M,1574
|
|
161
171
|
magic_hour/types/params/v1_ai_talking_photo_generate_body_assets.py,sha256=08gLlPEQ2RH9DxrTyEAMFMKAbig85a2NXRwV2jBG9gM,868
|
|
172
|
+
magic_hour/types/params/v1_ai_voice_generator_create_body.py,sha256=4UAia0k1Jkt1weBWgGTBXB9hGjawik5GlbOSFgIJA8Y,1065
|
|
173
|
+
magic_hour/types/params/v1_ai_voice_generator_create_body_style.py,sha256=rGXzEPQfel9pzza4ZGa39cP3kn9SJMTB1MkXvE9lP2A,1645
|
|
162
174
|
magic_hour/types/params/v1_animation_create_body.py,sha256=02iyLeTcgI4HqfWOSzozX6J5CKmEqpsdVjuyiap5qkY,2303
|
|
163
175
|
magic_hour/types/params/v1_animation_create_body_assets.py,sha256=Mg9teD9lRljt4s4Fl4Ld7S_EsrFiA0Mu-3bed00WA34,2309
|
|
164
176
|
magic_hour/types/params/v1_animation_create_body_style.py,sha256=h0qmkzf3Z1tbCje8cXYwsHX1PwZ5xv9d6SyoUjxAkA4,8119
|
|
@@ -201,9 +213,9 @@ magic_hour/types/params/v1_text_to_video_create_body.py,sha256=XgYc5yVUPnNKTYeEp
|
|
|
201
213
|
magic_hour/types/params/v1_text_to_video_create_body_style.py,sha256=cEZO917hipE4PbIy2vRdmUO2tSRqJcW9vge9z30-aB0,1173
|
|
202
214
|
magic_hour/types/params/v1_video_to_video_create_body.py,sha256=BV52jJcXnOsKaw-MMK6iS4O4jtkMRH9QtQnZh68Oi0Q,3735
|
|
203
215
|
magic_hour/types/params/v1_video_to_video_create_body_assets.py,sha256=XwdoqT1x5ElcWb6qUfmtabNsyaatEsOygB4gJ154y-M,1660
|
|
204
|
-
magic_hour/types/params/v1_video_to_video_create_body_style.py,sha256=
|
|
216
|
+
magic_hour/types/params/v1_video_to_video_create_body_style.py,sha256=cYiwKRRSJpwHwL_00wxXcXHvym8q1VsT2VBFOPfJNQM,6000
|
|
205
217
|
magic_hour/types/params/v1_video_to_video_generate_body_assets.py,sha256=j06Y1RKZKwEXW9Zdfhr3Lntx7eDAKpH-k1N1XkKuqPM,915
|
|
206
|
-
magic_hour-0.
|
|
207
|
-
magic_hour-0.
|
|
208
|
-
magic_hour-0.
|
|
209
|
-
magic_hour-0.
|
|
218
|
+
magic_hour-0.40.0.dist-info/LICENSE,sha256=F3fxj7JXPgB2K0uj8YXRsVss4u-Dgt_-U3V4VXsivNI,1070
|
|
219
|
+
magic_hour-0.40.0.dist-info/METADATA,sha256=ZZXu160EDcC1qTcX1NaBGXDwV_M4-JjbmLISqslhr4c,12978
|
|
220
|
+
magic_hour-0.40.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
221
|
+
magic_hour-0.40.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|