-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathall-prompts.json
More file actions
10685 lines (10685 loc) · 490 KB
/
Copy pathall-prompts.json
File metadata and controls
10685 lines (10685 loc) · 490 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": "1.14",
"updated": "2026-05-30",
"total": 433,
"models": {
"seedance-2.0": {
"name": "Doubao Seedance 2.0",
"vendor": "字节跳动 / 火山方舟",
"max_duration": "15s",
"max_input_videos": 3,
"prompt_length": "50-200 词",
"audio": "需单独处理",
"strengths": [
"复杂叙事",
"多主体",
"电影感",
"镜头切换"
]
},
"happyhorse-1.0": {
"name": "HappyHorse 1.0",
"vendor": "阿里巴巴",
"max_duration": "15s (千问 App 5/10/15s 三档,默认 5s)",
"prompt_length": "30-55 词 (最优)",
"audio": "原生联合生成音视频",
"strengths": [
"⭐ 2026 年 5 月 Elo 排名第一(1357)",
"紧凑短片",
"ASMR",
"原生带音频",
"8s 时序节拍"
]
},
"kling-3.0": {
"name": "Kling 3.0 (可灵)",
"vendor": "快手",
"max_duration": "15s (单段) / 6 shots within 15s / 智能分镜 2m",
"prompt_length": "中英文自由文本",
"audio": "原生音画同步 + 角色定向发声",
"strengths": [
"中文理解强",
"物理感动作",
"首尾帧",
"图生视频",
"Motion Brush",
"智能分镜"
]
},
"sora-2": {
"name": "Sora 2",
"vendor": "OpenAI",
"max_duration": "25s (Pro) / 15s (普通)",
"prompt_length": "80-150 词 (最优)",
"audio": "原生音画 + 对话生成",
"strengths": [
"电影质感",
"Shot List 分层结构",
"Cameos 真人客串",
"极致物理仿真",
"技术参数化提示词"
],
"notice": "⚠️ OpenAI 已宣布 Sora web/app 于 2026-04-26 停止。生产建议迁移到 Veo 3.1 / Kling 3.0 / Runway Gen-4.5 / Seedance 2.0"
},
"veo-3": {
"name": "Veo 3.1",
"vendor": "Google DeepMind",
"max_duration": "8s 单段 (Veo 3.1) / 148s (chained extend)",
"prompt_length": "100-150 词 (3-6 句最优)",
"audio": "原生音频 + 多人对话 + 精确音效同步",
"strengths": [
"原生音频最强",
"多人对话",
"精确音效同步",
"Storyboard 思维",
"Google Cloud API"
]
},
"runway-gen4": {
"name": "Runway Gen-4.5 / Aleph",
"vendor": "Runway",
"max_duration": "10s (Gen-4.5) / 5s (Aleph 单次编辑)",
"prompt_length": "自由文本,Aleph 用编辑动词",
"audio": "需后期",
"strengths": [
"Gen-4.5 ELO 排名第一",
"视频编辑 Aleph 独家",
"电影质感",
"Motion Brush 引导",
"API 接入方便"
]
},
"pika-2.5": {
"name": "Pika 2.5",
"vendor": "Pika Labs",
"max_duration": "25s(场景延长)",
"prompt_length": "简短聚焦,单一主体",
"audio": "部分支持",
"strengths": [
"Pikaffects 15+ 创意特效",
"iOS 原生 App",
"短视频爆款",
"单主体强一致性"
]
},
"hailuo-02": {
"name": "Hailuo 02 (海螺)",
"vendor": "MiniMax",
"max_duration": "10s",
"prompt_length": "克制简洁,避免堆砌",
"audio": "需后期",
"strengths": [
"物理仿真业界第一",
"1080p",
"Director's AI 叙事思维",
"重力/惯性/材质准确"
],
"notice": "MiniMax 同期还有 Hailuo 2.3(性价比版本,约竞品一半价格)"
},
"hunyuan-video": {
"name": "Hunyuan Video 1.5",
"vendor": "腾讯",
"max_duration": "5-10s",
"prompt_length": "Normal/Master 双模式 prompt rewrite",
"audio": "需后期",
"strengths": [
"开源最强(13B / 1.5 仅 8.3B)",
"跨维度生成",
"本地部署",
"LoRA 训练友好"
]
},
"wan-2.5": {
"name": "Wan 2.7 (通义万相)",
"vendor": "阿里巴巴",
"max_duration": "15s (Wan 2.7)",
"prompt_length": "Entity + Scene + Motion + Sound 公式",
"audio": "原生音视频同步",
"strengths": [
"原生音频",
"数字人 lip-sync 业界最准",
"对口型 / 广告 / MV",
"Wan 2.6 开源 / 2.7 最新",
"Alibaba Cloud API"
],
"notice": "Wan 2.6 是稳定开源版(RTX 4090 可跑),Wan 2.7 是最新发布版(更长 prompt 窗口 + 更锐利控制)"
},
"jimeng-3": {
"name": "即梦 AI (Seedance 2.0 引擎)",
"vendor": "字节跳动 / 剪映",
"max_duration": "15s (基于 Seedance 2.0)",
"prompt_length": "中文友好,8 维度公式",
"audio": "原生音画同步 + 8+ 语言唇形对齐",
"strengths": [
"中文最强(与 Kling 并列)",
"剪映原生集成",
"百款内置模板",
"C 端创作者首选",
"底层即 Seedance 2.0"
],
"notice": "即梦是字节剪映 C 端产品,底层引擎即 Seedance 2.0(同源不同前端)"
},
"ltx-video": {
"name": "LTX-Video 0.9.7",
"vendor": "Lightricks (开源)",
"max_duration": "10s",
"prompt_length": "4-8 句单段自然描述,200 词以内",
"audio": "无原生",
"strengths": [
"实时生成 (30 FPS 1216×704)",
"DiT 架构最快",
"单段落 prose 优先",
"本地部署友好",
"开源 (Apache 2.0)",
"screenplay-style 对话场景"
]
},
"mochi-1": {
"name": "Mochi 1",
"vendor": "Genmo (开源)",
"max_duration": "5.4s",
"prompt_length": "自由文本,强 prompt 遵循",
"audio": "无原生",
"strengths": [
"10B 参数 AsymmDiT",
"已发布最大开源视频模型",
"强 prompt 遵循",
"30 FPS 流畅运动",
"Apache 2.0 开源",
"Genmo Playground 浏览器可试"
]
},
"cogvideox-5b": {
"name": "CogVideoX 5B / 1.5",
"vendor": "智谱 AI · 清华 (开源)",
"max_duration": "10s",
"prompt_length": "英文最多 226 token,详细场景",
"audio": "无原生",
"strengths": [
"768×1360 高分辨率",
"5B 参数轻量",
"中国出品开源",
"支持 T2V + I2V",
"HuggingFace 完整工作流",
"Apache 2.0 开源"
]
},
"higgsfield-soul": {
"name": "Higgsfield Soul 2.0 / DoP",
"vendor": "Higgsfield AI",
"max_duration": "15s (单段) / 60-90s (AI Director 智能分镜)",
"prompt_length": "短指令 > 长描述 + 模板系统",
"audio": "原生支持",
"strengths": [
"Soul ID 角色一致性最强",
"DoP 电影镜头模板",
"社交媒体 viral 短片",
"AI Director 智能分镜",
"20+ Sub-skills"
]
},
"gemini-omni": {
"name": "Gemini Omni (Omni Flash)",
"vendor": "Google AI / DeepMind",
"max_duration": "(待官方确认 · 已上线 Gemini App / Flow / YouTube Shorts/Create)",
"prompt_length": "灵活,可用文化/科学锚点替代细节描述",
"audio": "原生多模态(any-input-to-anything)",
"strengths": [
"跨模态创作 (any input → any output)",
"实时文字渲染 (typography / 空间放置 / 动画风格)",
"迭代编辑 (targeted updates 不重写)",
"中途动作修改 (修改 pacing/emotion 保持连续性)",
"Real-World 知识利用 (文化/历史/科学锚点直接用)",
"Gemini App / Flow / YouTube Shorts 多平台"
],
"notice": "2026-05-19 发布 · 跨模态统一模型,从视频开始(Google AI 官方介绍 5 个 prompting tips)"
}
},
"categories": [
{
"id": "product-commercial",
"zh": "产品与商业广告",
"model": "both"
},
{
"id": "social-viral",
"zh": "社交媒体爆款",
"model": "seedance-2.0"
},
{
"id": "cinematic",
"zh": "电影叙事与戏剧场景",
"model": "seedance-2.0"
},
{
"id": "action",
"zh": "动作、格斗与追逐",
"model": "both"
},
{
"id": "sports",
"zh": "体育、赛车与武术",
"model": "seedance-2.0"
},
{
"id": "nature",
"zh": "自然、风景与天气",
"model": "both"
},
{
"id": "quiet-moments",
"zh": "安静时刻与生活切片",
"model": "seedance-2.0"
},
{
"id": "fantasy-scifi",
"zh": "奇幻与科幻",
"model": "seedance-2.0"
},
{
"id": "creative",
"zh": "创意与实验性",
"model": "seedance-2.0"
},
{
"id": "asmr",
"zh": "ASMR 与感官体验",
"model": "seedance-2.0"
},
{
"id": "comedy",
"zh": "喜剧与概念性",
"model": "seedance-2.0"
},
{
"id": "craft",
"zh": "工艺、艺术与现场表演",
"model": "seedance-2.0"
},
{
"id": "cinematic-timed",
"zh": "时序节拍电影感",
"model": "happyhorse-1.0"
},
{
"id": "portrait",
"zh": "人物与肖像",
"model": "happyhorse-1.0"
},
{
"id": "cinematic-styles",
"zh": "电影风格",
"model": "happyhorse-1.0"
},
{
"id": "viral-transform",
"zh": "病毒变身与转场",
"model": "kling-3.0"
},
{
"id": "music-video",
"zh": "音乐 MV 与表演",
"model": "kling-3.0"
},
{
"id": "experimental",
"zh": "实验与超现实",
"model": "kling-3.0"
},
{
"id": "gaming-ip",
"zh": "游戏与 IP 风",
"model": "kling-3.0"
},
{
"id": "image-to-video",
"zh": "图生视频专项",
"model": "kling-3.0"
},
{
"id": "horror",
"zh": "恐怖与悬疑",
"model": "both"
},
{
"id": "documentary",
"zh": "纪录片与采访",
"model": "both"
},
{
"id": "dialogue-driven",
"zh": "对话驱动(原生音频)",
"model": "both"
},
{
"id": "video-edit",
"zh": "视频编辑与重生(Aleph)",
"model": "runway-gen4"
},
{
"id": "pikaffects",
"zh": "Pikaffects 创意特效",
"model": "pika-2.5"
},
{
"id": "physics-sim",
"zh": "物理仿真精确动作",
"model": "hailuo-02"
},
{
"id": "open-source",
"zh": "开源本地部署专项",
"model": "hunyuan-video"
},
{
"id": "lip-sync",
"zh": "数字人对口型",
"model": "wan-2.5"
},
{
"id": "chinese-native",
"zh": "中文原生创作",
"model": "both"
}
],
"prompts": [
{
"id": "cg-001",
"model": "cogvideox-5b",
"category": "portrait",
"title": "CogVideoX 东京时尚漫步",
"prompt": "A stylish woman walks down a Tokyo street filled with warm glowing neon and animated city signage. She wears a black leather jacket, a long red dress, and black boots, and carries a black purse. She wears sunglasses and red lipstick. She walks confidently and casually. The street is damp and reflective, creating a mirror effect of the colorful lights, and many pedestrians walk about.",
"tags": [
"portrait",
"tokyo",
"neon",
"cogvideo-official"
],
"params": {
"aspect": "16:9",
"duration": "10s",
"resolution": "1360x768"
},
"source": {
"name": "Zhipu CogVideoX",
"url": "https://github.com/zai-org/CogVideo",
"tier": "official-platform"
},
"notes": "CogVideoX 官方样板 prompt,英文最多 226 token,详细场景描述"
},
{
"id": "cg-002",
"model": "cogvideox-5b",
"category": "nature",
"title": "CogVideoX 海岸日落浪潮",
"prompt": "Ocean waves crashing against a rocky coastline at sunset. Spray and mist catching the golden light. Camera positioned low, watching waves approach and recede. Natural sound implied, peaceful yet powerful atmosphere. The horizon glows with deep orange and pink hues, seabirds occasionally drift across the frame, and the rhythm of the waves dominates the composition.",
"tags": [
"nature",
"ocean",
"sunset",
"cogvideo-official"
],
"params": {
"aspect": "16:9",
"duration": "10s"
},
"source": {
"name": "Zhipu",
"url": "https://huggingface.co/zai-org/CogVideoX-5b",
"tier": "official-platform"
}
},
{
"id": "cg-003",
"model": "cogvideox-5b",
"category": "comedy",
"title": "CogVideoX 弹吉他熊猫",
"prompt": "A panda, dressed in a small, red jacket and a tiny hat, sits on a wooden stool in a serene bamboo forest. The panda's fluffy paws strum a miniature acoustic guitar, producing soft, melodic tunes. Nearby, a few other pandas gather, watching curiously and some clapping in rhythm. Sunlight filters through the tall bamboo, casting a gentle glow on the scene. The panda's face is expressive, showing concentration and joy as it plays.",
"tags": [
"comedy",
"animal",
"music",
"cogvideo-official"
],
"params": {
"aspect": "16:9",
"duration": "10s"
},
"source": {
"name": "Zhipu",
"url": "https://github.com/zai-org/CogVideo",
"tier": "official-platform"
}
},
{
"id": "cg-004",
"model": "cogvideox-5b",
"title": "CogVideoX I2V 风景动态化",
"prompt": "Based on the provided still image of a tranquil landscape, gentle motion brings the scene to life over the course of six seconds. Water in the foreground ripples softly as a light breeze passes across its surface, concentric circles spreading outward from a single point. Leaves on the trees lining the shore sway with the wind, their fresh green coloring catching shifts of dappled sunlight. Distant clouds drift slowly across a brilliantly clear sky, their shadows moving subtly across the rolling hills behind. The camera holds a steady wide composition, capturing the serene movement of nature without any cuts. Soft, diffused daylight bathes the entire scene in warm golden tones, creating a picturesque, contemplative atmosphere.",
"tags": [
"image-to-video",
"nature",
"ambient",
"cogvideo"
],
"category": "image-to-video",
"params": {
"aspect": "16:9",
"duration": "6s"
},
"source": {
"name": "Zhipu CogVideoX-5b-I2V",
"url": "https://huggingface.co/zai-org/CogVideoX-5b-I2V",
"tier": "official-platform"
}
},
{
"id": "cg-005",
"model": "cogvideox-5b",
"title": "CogVideoX 本地部署测试 prompt",
"prompt": "A cat with bright green eyes sits on a wooden windowsill, watching raindrops trace winding patterns down the cold glass. The cat's striped grey fur is illuminated by the warm interior light, while outside, blurred lights of a city evening glow softly in the rain-soaked street. The cat's tail twitches occasionally, ears rotating slightly toward the sound of distant traffic. Each raindrop catches a tiny reflection of the city lights as it slides down the pane. The camera holds a static medium close-up framing the cat in profile against the window, capturing the contrast between the cozy indoor warmth and the cool blue tones of the rainy night outside.",
"tags": [
"pet",
"rainy",
"test",
"open-source"
],
"category": "open-source",
"params": {
"aspect": "16:9",
"duration": "8s"
},
"source": {
"name": "Zhipu CogVideoX",
"url": "https://github.com/zai-org/CogVideo",
"tier": "official-platform"
}
},
{
"id": "cg-006",
"model": "cogvideox-5b",
"category": "cinematic",
"title": "CogVideoX 上海雨夜小巷",
"prompt": "A narrow alley in old Shanghai at night, drizzle falling steadily, neon signs in Chinese characters reflected on wet cobblestones. An elderly tea vendor stands beside his small wooden cart under a single hanging bulb, pouring tea into a small ceramic cup. Steam rises from the cup. The camera slowly pushes in from behind a parked bicycle, framing the vendor and his cart in soft warm light against the cool blue night.",
"tags": [
"shanghai",
"noir",
"rain",
"atmospheric"
],
"params": {
"aspect": "21:9",
"duration": "10s"
},
"source": {
"name": "CogVideoX Community",
"url": "https://github.com/zai-org/CogVideo",
"tier": "official-platform"
}
},
{
"id": "cg-007",
"model": "cogvideox-5b",
"title": "CogVideoX 手表精致展示",
"prompt": "A close-up of a luxury mechanical watch rests on a polished walnut surface, the rich grain of the wood catching warm directional light. The second hand sweeps smoothly across the white enamel dial, each tick rendered in fine detail. The camera slowly orbits around the watch, revealing the brushed-steel case from multiple angles. Through the transparent caseback in alternating shots, the intricate movement of internal gears, jewels, and the balance wheel becomes visible, each component working in delicate synchronization. Single key light from the upper right creates crisp specular highlights along the polished bezel and crown, while soft shadows fall behind the watch on the wood. The atmosphere is serene and contemplative, highlighting the artistry of the timepiece.",
"tags": [
"product",
"watch",
"macro",
"luxury"
],
"category": "product-commercial",
"params": {
"aspect": "1:1",
"duration": "8s"
},
"source": {
"name": "Zhipu CogVideoX",
"url": "https://github.com/zai-org/CogVideo",
"tier": "official-platform"
}
},
{
"id": "cg-008",
"model": "cogvideox-5b",
"category": "experimental",
"title": "CogVideoX 流光抽象艺术",
"prompt": "An abstract composition of flowing colored liquids merging and separating against a pure black background, deep indigo and electric coral colors swirling in intricate fractal patterns, slow rotating motion creating mesmerizing visual rhythm, hyperreal liquid surface tension with metallic sheen catching directional light, satisfying loop.",
"tags": [
"abstract",
"fluid",
"art",
"loop"
],
"params": {
"aspect": "1:1",
"duration": "10s"
},
"source": {
"name": "CogVideoX",
"url": "https://huggingface.co/zai-org/CogVideoX-5b",
"tier": "official-platform"
}
},
{
"id": "gm-001",
"model": "gemini-omni",
"title": "26 字母物品节拍剪辑(Google AI 官方样板)",
"prompt": "The video shows items of the alphabet. An unusual item starting with each letter is shown sitting on a table (like a Capybara for C, disco globe for D and Lava Lamp for L). All 26 letters must be represented by 26 items with matching lower thirds displaying the letter. Only one item and lower third at a time. Each lower third must look like a black marker written on a slip of paper in the bottom left. Rapid fire, roughly 9 frames per item at 24FPS. Last frame is a slip of paper \"THE END.\" The whole video is accompanied by calm smooth music.",
"tags": [
"text-rendering",
"rapid-fire",
"alphabet",
"educational",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "~10s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Mastering Gemini Omni: The Ultimate Video Prompting Guide",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-002",
"model": "gemini-omni",
"title": "极简 prompt:火星宇航员视角",
"prompt": "Astronaut's POV on Mars",
"tags": [
"minimal-prompt",
"pov",
"space",
"real-world-knowledge",
"google-official"
],
"category": "fantasy-scifi",
"params": {
"aspect": "16:9",
"duration": "8s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 1 Real-World Knowledge",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-003",
"model": "gemini-omni",
"title": "Rube Goldberg 大理石链式反应(极简)",
"prompt": "A marble rolling fast on a chain reaction style track, continuous smooth shot",
"tags": [
"minimal-prompt",
"physics",
"marble",
"continuous-shot",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "8s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 1 Real-World Knowledge",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-004",
"model": "gemini-omni",
"title": "文字单词逐个显示(节拍 sizzle reel)",
"prompt": "word by word, one word on the screen at a time: did, you, know, that, this, model, can, do, pretty, good, text!? Each word appears with a different animated style, perfect pacing to a rhythm, sizzle reel.",
"tags": [
"text-rendering",
"typography",
"rhythm",
"sizzle-reel",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 2 Text Rendering",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-005",
"model": "gemini-omni",
"title": "内心独白漂浮 3D 文字(Intrusive Thoughts)",
"prompt": "Overlay motion-tracked, minimalist text commentary onto the physical environment of the video. This text represents [the subject] deadpan, immediate inner monologue that's observant, slightly absurd, and life-contemplating. Think \"intrusive thoughts.\" Clean, white, lowercase sans-serif text (like Helvetica or Inter). The text hovers in 3D space, connected to the subjects being commented on via ultra-thin, crisp, white leader lines.",
"tags": [
"text-rendering",
"motion-tracked",
"3d-text",
"monologue",
"absurd",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "10s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 2 Text Rendering (Intrusive Thoughts)",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-006",
"model": "gemini-omni",
"title": "迭代编辑:把小提琴移到新环境",
"prompt": "Transport the violin to a new environment",
"tags": [
"iterative-edit",
"environment-change",
"minimal-prompt",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 4 Edit Iteratively",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-007",
"model": "gemini-omni",
"title": "迭代编辑:小提琴隐形",
"prompt": "Make the violin invisible",
"tags": [
"iterative-edit",
"vfx",
"invisibility",
"minimal-prompt",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 4 Edit Iteratively",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-008",
"model": "gemini-omni",
"title": "迭代编辑:换镜头角度(over-shoulder)",
"prompt": "Change the camera angle so it's looking over the violinist's shoulder",
"tags": [
"iterative-edit",
"camera-angle",
"over-shoulder",
"minimal-prompt",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 4 Edit Iteratively",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-009",
"model": "gemini-omni",
"title": "动作即时修改:踮脚走",
"prompt": "Make the character walk on their tiptoes",
"tags": [
"action-modify",
"character-control",
"minimal-prompt",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 5 Change Action on the Fly",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "gm-010",
"model": "gemini-omni",
"title": "动作即时修改:跳起",
"prompt": "Have them leap into the air",
"tags": [
"action-modify",
"character-control",
"minimal-prompt",
"google-official"
],
"category": "creative",
"params": {
"aspect": "16:9",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Google AI · Tip 5 Change Action on the Fly",
"url": "https://x.com/GoogleAI/status/2059381218660270435",
"tier": "official"
}
},
{
"id": "hl-001",
"model": "hailuo-02",
"category": "physics-sim",
"title": "海浪冲击礁石(物理仿真)",
"prompt": "Massive ocean waves crash against rugged cliff rocks at high speed, water spray erupts upward and disperses in mist, foam pools form and drain in cycles. Wide shot from sea level, late afternoon backlight catching the spray. Realistic fluid dynamics, accurate gravity and water tension.",
"tags": [
"physics",
"ocean",
"fluid",
"atmospheric"
],
"params": {
"aspect": "16:9",
"duration": "8s",
"resolution": "1080p"
},
"source": {
"name": "MiniMax",
"url": "https://platform.minimax.io/docs/guides/video-generation",
"tier": "official"
},
"notes": "Hailuo 02 物理仿真业界第一,水/火/烟/布料尤其准确"
},
{
"id": "hl-002",
"model": "hailuo-02",
"title": "烛火被风吹动(火焰物理)",
"prompt": "A single candle flame flickers and bends as a gust of wind passes through a dark room. The flame stretches sideways with accurate fluid dynamics, smoke trails rise in twisting columns, hot wax pools and drips slowly down the side of the candle. Extreme close-up, side-light only from the flame itself.",
"tags": [
"physics",
"fire",
"candle",
"macro"
],
"category": "physics-sim",
"params": {
"aspect": "1:1",
"duration": "6s",
"resolution": "1080p"
},
"source": {
"name": "MiniMax Platform",
"url": "https://platform.minimax.io/docs/guides/video-generation",
"tier": "official"
}
},
{
"id": "hl-003",
"model": "hailuo-02",
"category": "physics-sim",
"title": "丝绸在风中飘动(布料物理)",
"prompt": "A long red silk scarf floats and ripples in the wind against a clear blue sky, fabric folds and stretches with realistic weight, sunlight catches every wave. Medium shot from below, the scarf fills most of the frame. Slow graceful motion.",
"tags": [
"physics",
"fabric",
"silk",
"slow-motion"
],
"params": {
"aspect": "9:16",
"duration": "8s",
"resolution": "1080p"
},
"source": {
"name": "MiniMax",
"url": "https://platform.minimax.io/docs/guides/video-generation",
"tier": "official"
}
},
{
"id": "hl-004",
"model": "hailuo-02",
"category": "physics-sim",
"title": "体操运动员空中翻转(重力惯性)",
"prompt": "A female gymnast performs a complex aerial flip on a balance beam, body rotates with accurate angular momentum, hair and leotard catch wind, lands cleanly with knee absorption. Side-angle wide shot, gym lighting, slow motion at apex.",
"tags": [
"physics",
"sports",
"gymnastics",
"slow-motion"
],
"params": {
"aspect": "16:9",
"duration": "10s",
"resolution": "1080p"
},
"source": {
"name": "getimg",
"url": "https://getimg.ai/blog/minimax-hailuo-02-the-1080p-ai-video-model-that-gets-physics-right",
"tier": "reputable-3rd-party"
}
},
{
"id": "hl-005",
"model": "hailuo-02",
"category": "physics-sim",
"title": "陶瓷碗坠落破碎(脆性物理)",
"prompt": "A blue ceramic bowl slips from a wooden table and falls, hits the floor and shatters into precise fragments, shards bounce and scatter outward, dust puff rises. Side-angle close-up, kitchen ambient light, real-time speed with slight slow-mo at impact.",
"tags": [
"physics",
"destruction",
"ceramics",
"impact"
],
"params": {
"aspect": "1:1",
"duration": "5s",
"resolution": "1080p"
},
"source": {
"name": "Hailuo",
"url": "https://blog.segmind.com/hailuo-minimax-ai-video-prompt-guide/",
"tier": "reputable-3rd-party"
}
},
{
"id": "hl-006",
"model": "hailuo-02",
"title": "篮球扣篮特写",
"prompt": "A basketball player rises and slams a dunk through the hoop. The ball drops cleanly through the net, the rim and backboard vibrate from impact with accurate physics, the player hangs briefly on the rim before releasing. Low-angle hero shot from courtside, real-time playback, hardwood floor reflections.",
"tags": [
"sports",
"basketball",
"low-angle",
"slow-motion"
],
"category": "action",
"params": {
"aspect": "16:9",
"duration": "8s",
"resolution": "1080p"
},
"source": {
"name": "MiniMax Platform",
"url": "https://platform.minimax.io/docs/guides/video-generation",
"tier": "official"
}
},
{
"id": "hl-007",
"model": "hailuo-02",
"title": "雪夜街头的拥抱",
"prompt": "Two people in heavy coats embrace on a snowy city street at night under a streetlamp. Snowflakes settle on their shoulders and hair with accurate weight, breath fogs visibly in the cold air, fabric of their coats compresses where pressed together. Medium shot, slow circling camera, warm tungsten light against cold blue night.",
"tags": [
"emotional",
"winter",
"street",
"circling"
],
"category": "cinematic",
"params": {
"aspect": "16:9",
"duration": "10s",
"resolution": "1080p"
},
"source": {
"name": "Hailuo Prompt Guide",
"url": "https://blog.segmind.com/hailuo-minimax-ai-video-prompt-guide/",
"tier": "reputable-3rd-party"
}
},
{
"id": "hl-008",
"model": "hailuo-02",
"category": "nature",
"title": "蜂鸟悬停吸蜜(精细动作)",
"prompt": "A hummingbird hovers in front of a red trumpet flower, wings blur at extreme speed, long beak extends into the flower. Macro close-up, soft afternoon sunlight, blurred green garden background. Real-time wing speed, ultra-realistic feather detail.",
"tags": [
"wildlife",
"macro",
"hummingbird",
"physics"
],
"params": {
"aspect": "16:9",
"duration": "6s",
"resolution": "1080p"
},
"source": {
"name": "Hailuo",
"url": "https://platform.minimax.io/docs/guides/video-generation",
"tier": "official"
}
},
{
"id": "hl-009",
"model": "hailuo-02",
"title": "小狗失败接飞盘",
"prompt": "A golden retriever puppy enthusiastically leaps to catch a frisbee but misses, tumbles into soft grass with accurate gravity, immediately bounces back up tail wagging. Fur ripples on impact, the disc spins past in the background. Side-angle medium shot, sunny park afternoon, real-time playback.",
"tags": [
"pet",
"comedy",
"physical",
"outdoor"
],
"category": "comedy",
"params": {
"aspect": "16:9",