Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xuwx1
LightX2V
Commits
a81ad1e5
Commit
a81ad1e5
authored
Apr 30, 2025
by
helloyongyang
Browse files
update post.py examples
parent
d725c154
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
scripts/post.py
scripts/post.py
+0
-2
scripts/post_enhancer.py
scripts/post_enhancer.py
+20
-0
No files found.
scripts/post.py
View file @
a81ad1e5
...
...
@@ -6,10 +6,8 @@ url = "http://localhost:8000/v1/local/video/generate"
message
=
{
"prompt"
:
"Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage."
,
"use_prompt_enhancer"
:
True
,
"negative_prompt"
:
"色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走"
,
"image_path"
:
""
,
"num_fragments"
:
1
,
"save_video_path"
:
"./output_lightx2v_wan_t2v_ap4.mp4"
,
# It is best to set it to an absolute path.
}
...
...
scripts/post_enhancer.py
0 → 100644
View file @
a81ad1e5
import
requests
from
loguru
import
logger
url
=
"http://localhost:8000/v1/local/video/generate"
message
=
{
"prompt"
:
"Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage."
,
"use_prompt_enhancer"
:
True
,
"negative_prompt"
:
"色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走"
,
"image_path"
:
""
,
"num_fragments"
:
1
,
"save_video_path"
:
"./output_lightx2v_wan_t2v_ap4.mp4"
,
# It is best to set it to an absolute path.
}
logger
.
info
(
f
"message:
{
message
}
"
)
response
=
requests
.
post
(
url
,
json
=
message
)
logger
.
info
(
f
"response:
{
response
.
json
()
}
"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment