-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
929 lines (819 loc) · 40.5 KB
/
index.html
File metadata and controls
929 lines (819 loc) · 40.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description"
content="Generate high-quality and sychronuous sounding video.">
<meta name="keywords" content="Joint audio-video generation, audio-video synchronization, AV-DPO">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JavisDiT++</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PYVRSFMDRL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-PYVRSFMDRL');
</script>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet">
<link rel="stylesheet" href="./static/css/bulma.min.css">
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css">
<link rel="stylesheet" href="./static/css/bulma-slider.min.css">
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="./static/css/index.css">
<link rel="icon" href="./static/images/JavisDiT++_logo.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="./static/js/bulma-carousel.min.js"></script>
<script src="./static/js/bulma-slider.min.js"></script>
<script src="./static/js/index.js"></script>
<style>
h2 { border-bottom: 2px solid #ccc; padding-bottom: 10px; margin-top: 40px; text-align: center; font-size: 1.8em; }
h2.section-title {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 30px;
border-radius: 25px;
border: none;
margin: 50px auto 20px;
font-size: 1.6em;
font-weight: 600;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
letter-spacing: 0.5px;
}
/* 横向滚动容器 */
.table-scroll{
display:block;
width:100%;
overflow-x:auto;
-webkit-overflow-scrolling:touch; /* 移动端惯性滚动 */
}
/* 关键:让表格按内容展开而不是被限制为 100% */
.table-scroll table{
width:max-content;
min-width:1100px; /* 可按列数/单元内容调整 */
border-collapse:separate; /* 防止某些浏览器压缩导致不触发滚动 */
}
.table-scroll th,
.table-scroll td{
white-space:nowrap; /* 不换行,保证横向溢出才出现滚动条 */
text-align:center;
vertical-align:middle;
}
/* 可选:限制单元内 <video> 的显示宽度,避免过大 */
/* .table-scroll video{
max-width:280px;
height:auto;
} */
.video-section { margin-bottom: 60px; text-align: center; }
.intro { text-align: center; margin-bottom: 40px; font-size: 1em; line-height: 1.6; color: #666; }
.section-description {
font-size: 1.05em;
color: #555;
margin-top: 15px;
margin-bottom: 30px;
text-align: center;
max-width: 900px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
.video-row { display: flex; flex-wrap: wrap; margin: 0 -10px; align-items: flex-start; justify-content: center; }
.video-container {
width: 300px; /* 统一宽度:你也可以改成 320/360 */
margin: 10px;
box-sizing: border-box;
text-align: center;
display: flex;
flex-direction: column;
}
.video-fixed-ratio {
width: 100%;
aspect-ratio: 16 / 9; /* ⭐关键:所有视频同一比例 */
height: auto; /* 这里不再影响高度,因为 aspect-ratio 接管了 */
object-fit: cover; /* ⭐推荐:填满更整齐;不想裁剪就用 contain */
background-color: #000;
border: 1px solid #ddd;
border-radius: 8px;
display: block;
}
.video-container p {
margin-top: 8px;
font-size: 14px;
color: #555;
word-wrap: break-word;
font-weight: 600;
}
.comparison-prompt {
width: 100%;
text-align: center;
font-weight: bold;
font-size: 1.05em;
margin-top: 20px;
margin-bottom: 15px;
padding: 0 10px;
box-sizing: border-box;
color: #333;
line-height: 1.5;
}
.section-divider {
margin: 30px auto 20px;
padding: 0;
border-top: 2px solid #ddd;
max-width: 1067px;
width: 100%;
}
.case-divider {
margin: 40px auto 20px;
padding: 0;
border-top: 1px dashed #999;
max-width: 1200px;
width: 100%;
}
footer {
text-align: center;
margin-top: 80px;
padding-top: 30px;
color: #666;
font-size: 0.9em;
}
footer::before {
content: '';
display: block;
margin: 0 auto 30px;
width: 100%;
max-width: 1200px;
border-top: 2px solid #ddd;
}
/* 2x2 网格:不滑动 */
.video-grid{
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
max-width: 1200px; /* 控制整体宽度 */
margin: 0 auto; /* 居中 */
}
/* 单个卡片 */
.video-card{
border: 2px solid #6a8fcc;
border-radius: 18px;
padding: 14px;
background: #fff;
display: flex;
flex-direction: column;
}
/* 上方 prompt:固定 3 行高度(你之前想要) */
.video-prompt{
text-align: center;
font-weight: 600;
line-height: 1.35;
margin: 0 0 12px 0;
min-height: calc(1.35em * 3); /* 固定占 3 行 */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
/* 视频统一大小 */
.video-card video{
width: 100%;
aspect-ratio: 16 / 9; /* 统一比例 */
object-fit: cover; /* 填满更整齐;不想裁剪改 contain */
border-radius: 12px;
background: #000;
display: block;
}
</style>
</head>
<body>
<section class="hero">
<div class="hero-body">
<!-- <div class="container is-max-desktop"> -->
<div class="container">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title" style="display: flex;flex-direction: row;align-items: center;justify-content: center; margin-bottom: 0px;">
<img src="./static/images/JavisDiT++_logo.png" width="80" height="80" style="margin-right: 8px;">
<!-- <span style="color:#ff4d4d;">J</span>
<span style="color:#ff9933;">a</span>
<span style="color:#ffd11a;">v</span>
<span style="color:#33cc33;">i</span>
<span style="color:#3399ff;">s</span>
<span style="color:#9966ff;">D</span>
<span style="color:#ff66cc;">i</span>
<span style="color:#444;">T</span>
<span style="color:#ff4d4d;">+</span>
<span style="color:#3399ff;">+</span> -->
JavisDiT++:
</h1>
<h2 class="title publication-title" style="margin: 10px auto 10px; border: none">Unified Modeling and Optimization for <br/> Joint Audio-Video Generation</h2>
<!-- <div class="is-size-5 publication-authors">
<span class="author-block">
JavisDiT++ Team
<span class="author-block">
</div> -->
<div class="is-size-5 publication-authors">
<span class="author-block">
<a href="https://kail8.github.io/">Kai Liu</a><sup>1*</sup>,</span>
<span class="author-block">
<a href="#">Yanhao Zheng</a><sup>1*</sup>,</span>
<span class="author-block">
<a href="https://kaiw7.github.io/">Kai Wang</a><sup>3*</sup>,
</span>
<span class="author-block">
<a href="https://sqwu.top/">Shengqiong Wu</a><sup>2</sup>,
</span>
<span class="author-block">
<a href="https://scholar.google.com/citations?user=Ae41dcUAAAAJ&hl=en">Rongjunchen Zhang</a><sup>4</sup>,
</span><br>
<span class="author-block">
<a href="https://www.cs.rochester.edu/u/jluo/">Jiebo Luo</a><sup>5</sup>,
</span>
<span class="author-block">
<a href="https://scholar.google.com/citations?user=1ne87eUAAAAJ&hl=en">Dimitrios Hatzinakos</a><sup>3</sup>,
</span>
<span class="author-block">
<a href="https://liuziwei7.github.io/">Ziwei Liu</a><sup>6</sup>,
</span>
<span class="author-block">
<a href="https://haofei.vip/">Hao Fei</a><sup>2†</sup>,
</span>
<span class="author-block">
<a href="https://www.chuatatseng.com/">Tat-Seng Chua</a><sup>2</sup>
</span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block" style="font-size: 18px"><sup>1</sup>Zhejiang University,</span>
<span class="author-block" style="font-size: 18px"><sup>2</sup>National University of Singapore,</span>
<span class="author-block" style="font-size: 18px"><sup>3</sup>University of Toronto,</span><br>
<span class="author-block" style="font-size: 18px"><sup>4</sup>HiThink Research,</span>
<span class="author-block" style="font-size: 18px"><sup>5</sup>University of Rochester,</span>
<span class="author-block" style="font-size: 18px"><sup>6</sup>Nanyang Technological University</span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block" style="font-size: 15px;">Accepted by <a href="https://openreview.net/forum?id=hRRWfFpKRp">ICLR 2026</a> (<sup>*</sup>Equal Contribution, <sup>†</sup>Correspondence)</span>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<!-- PDF Link. -->
<span class="link-block">
<a href="https://arxiv.org/abs/2602.19163"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="ai ai-arxiv"></i>
</span>
<span>ArXiv Paper</span>
</a>
</span>
<span class="link-block">
<a href="https://huggingface.co/papers/2602.19163"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fa fa-laugh"></i>
</span>
<span>HF Paper</span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a href="https://github.com/JavisVerse/JavisDiT"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Code</span>
</a>
</span>
<!-- Model Link. -->
<span class="link-block">
<a href="https://huggingface.co/JavisVerse/JavisDiT-v1.0-jav"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fa fa-laugh"></i>
</span>
<span>Model</span>
</a>
</span>
<!-- Dataset Link. -->
<!-- <span class="link-block">
<a href=""
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="far fa-images"></i>
</span>
<span>Data</span>
</a>
</span> -->
<!-- Video Link. -->
<span class="link-block">
<a href="https://youtu.be/PUSGQU6ZpdE"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fab fa-youtube"></i>
</span>
<span>Video</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="hero teaser" style="margin-top: -30px;">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column is-three-quarters">
<h3 class="has-text-centered" style="font-size: 1.2rem;">
<b>TL;DR:</b> We introduce <strong>JavisDiT++</strong>, a concise yet powerful model to generate semantically and temporally aligned sounding videos.
</h3>
</div>
</div>
</div>
</section> -->
<!-- <section class="hero is-light is-small" style="margin-top: 20px;">
<div class="hero-body" style="padding-top: 1rem; padding-bottom: 0.5rem;">
<div class="container" style="text-align:center">
<p style="margin-bottom: 10px; font-size: 11pt;">
Click on each video to <strong>unmute or mute</strong> its generated audio.
</p>
<center>
<div id="results-carousel" class="carousel results-carousel">
<div id="skateboard">
<p class="video-title">Prompt: Several pigeons are gathered on a rocky shore near the water. One pigeon splashes energetically, sending up
ripples, while the others stand watching. The sound of splashing water, gurgling, and flapping wings fills the air.</p>
<div class="item">
<video id="video-skateboard" autoplay loop muted playsinline onclick="toggleMute(this)">
<source src="./static/videos/taser_videos/case_0.mp4" type="video/mp4">
</video>
</div>
</div>
<div id="eautiful-orchestral">
<p class="video-title">Prompt: A brown bear is walking towards the camera, growling
in a natural setting with greenery in the background.</p>
<div class="item">
<video id="video-orchestral" autoplay loop muted playsinline onclick="toggleMute(this)">
<source src="./static/videos/taser_videos/case_1.mp4" type="video/mp4">
</video>
</div>
</div>
<div id="Whistling-sounds">
<p class="video-title">Prompt: A young girl plays the piano.</p>
<div class="item">
<video id="video-whistling-sounds" autoplay loop muted playsinline onclick="toggleMute(this)">
<source src="./static/videos/taser_videos/case_2.mp4" type="video/mp4">
</video>
</div>
</div>
<div id="water-rushing">
<p class="video-title">Prompt: A sports car races around a track bordered by
grass and fences. The engine roars through the air.</p>
<div class="item">
<video id="video-water-rushing" autoplay loop muted playsinline onclick="toggleMute(this)">
<source src="./static/videos/taser_videos/case_3.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</center>
</div>
</div>
</section>
<script>
function toggleMute(clickedVideo) {
// Get all video elements
const allVideos = document.querySelectorAll('video');
// Loop through all videos and mute them, except for the clicked video
allVideos.forEach(video => {
if (video !== clickedVideo) {
video.muted = true; // Mute other videos
}
});
// Toggle mute on the clicked video
clickedVideo.muted = !clickedVideo.muted;
console.log(clickedVideo.muted ? 'Muted' : 'Unmuted');
}
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
var options = {
slidesToScroll: 1,
slidesToShow: 2,
loop: true,
infinite: true,
autoplay: false,
autoplaySpeed: 5000,
centerMode: true,
pagination: false,
};
var carousels = bulmaCarousel.attach('#results-carousel', options);
});
</script> -->
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column is-full-width">
<p style="font-size: 22px;">
<span style='font-family: "Comic Sans MS"'>TL;DR:</span>
Under the <a href="https://JavisVerse.github.io/">JavisVerse</a> project, we introduce <strong>JavisDiT++</strong>, a concise yet powerful DiT model to generate high-quality and synchronized sounding videos with textual conditions.
</p>
<br>
<video src="./static/videos/full_demo/video_demo.mp4" controls style="width: 100%; height: auto;"></video>
<!-- <div class="publication-video">
<iframe src="https://www.youtube.com/embed/F45hnFmjeHk?si=ULWIqUsVUBpeLqAX"
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div> -->
</div>
</div>
</div>
</section>
<section class="section">
<div class="container is-max-desktop">
<!-- Abstract. -->
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<!-- <h2 class="section-title">Abstract</h2> -->
<h2 class="title is-2" style="border: none;">Abstract</h2>
<div class="content has-text-justified">
<p>
Recent AIGC advances have rapidly expanded from text-to-image generation toward high-quality multimodal synthesis across video and audio.
Within this context, joint audio-video generation (JAVG) has emerged as a fundamental task that produces synchronized and semantically aligned
sound and vision from textual descriptions. However, compared with advanced commercial models such as Veo3, existing open-source methods still
suffer from limitations in generation quality, temporal synchrony, and alignment with human preferences. To bridge the gap, this paper presents
<strong>JavisDiT++</strong>, a concise yet powerful framework for efficient and effective JAVG. First, we introduce a modality-specific mixture-of-experts
(MS-MoE) design that enables cross-modal interaction efficacy while enhancing single-modal generation quality. Then, we propose a temporal-aligned
RoPE (TA-RoPE) strategy to achieve explicit, frame-level synchronization between audio and video tokens. Besides, we develop an audio-video direct
preference optimization (AV-DPO) method to align model outputs with human preference across quality, consistency, and synchrony dimensions. Built upon
Wan2.1-1.3B-T2V, our model achieves state-of-the-art performance merely with around 1M public training entries, significantly outperforming prior
approaches in both qualitative and quantitative evaluations. Comprehensive ablation studies have been conducted to validate the effectiveness of
our proposed modules.
</p>
</div>
</div>
</div>
<!--/ Abstract. -->
<!-- Paper video. -->
<!-- <iframe src="./static/videos/full_demo/video_demo.mp4" allow="autoplay; encrypted-media" allowfullscreen></iframe> -->
<!-- <div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="section-title">Video Demo</h2>
<div class="publication-video">
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/full_demo/video_demo.mp4" type="video/mp4">
</video>
</div>
</div>
</div> -->
<!--/ Paper video. -->
</div>
</section>
<!-- <section class="hero is-light is-small" style="margin-top: 10px;">
<div class="hero-body" style="padding-top: 1rem; padding-bottom: 0.5rem;"> -->
<section class="hero is-light is-small" style="margin-top: 10px;">
<div class="hero-body container is-max-desktop" style="padding-top: 1rem; padding-bottom: 0.5rem;">
<div class="columns is-centered has-text-centered">
<h2 class="title is-2" style="border: none;">Method</h2>
<br>
</div>
<!-- Architecture -->
<div class="columns is-centered">
<div class="column is-full-width">
<div class="content has-text-justified">
<p>
We propose a unified and efficient DiT architecture that jointly models
audio and video tokens via full self-attention to enable dense cross-modal interaction.
Modality-specific FFNs are then introduced to refine intra-modal features.
Unlike dual-stream frameworks or dynamic routing rules, our MS-MoE deterministically routes tokens by modality,
isolating interference while retaining the benefits of expert sparsity.
As a result, the model capacity is expanded (1.3B → 2.1B) without increasing inference cost.
</p>
<img class="columns is-centered has-text-centered" src="./static/images/framework.jpg" alt="Teaser" width="70%"
style="margin:0 auto">
<br>
<figcaption>
<p style="text-align: center; color: #061E61;">
<b>Figure 1:</b> Model architecture. We introduce a modality-specific MoE (MS-MoE) design for efficient and effective JAVG.
</p>
</figcaption>
<br>
<p>
We then propose a temporally aligned rotary position encoding (TA-RoPE) scheme that
temporally aligns audio and video tokens by assigning shared time indices, and offsets spatial dimensions to prevent overlap.
This alignment is achieved purely through position ID manipulation without physically reordering tokens,
avoiding the inefficiency of interleaving audio-visual tokens in autoregressive models.
</p>
<img class="columns is-centered has-text-centered" src="./static/images/TA-RoPE.jpg" alt="Teaser" width="60%"
style="margin:0 auto">
<br>
<figcaption>
<p style="text-align: center; color: #061E61;">
<b>Figure 2:</b> Illustration of temporal-aligned rotary position encoding (TA-RoPE) for video and audio token synchronization.
</p>
</figcaption>
<br>
<p>
We further propose the AV-DPO technique to improve audio-video quality and synchronization
by aligning generation with human preferences. It leverages diverse reward models to rank outputs and
construct preference pairs based on modality-aware criteria, ensuring consistent selection across modalities.
To our knowledge, this is the first application of preference alignment in the JAVG domain.
</p>
<img class="columns is-centered has-text-centered" src="./static/images/AV-DPO.jpg" alt="Teaser" width="80%"
style="margin:0 auto">
<br>
<figcaption>
<p style="text-align: center; color: #061E61;">
<b>Figure 3:</b> Illustration of preference data collection and training pipeline of the proposed AV-DPO technique.
</p>
</figcaption>
<br>
</div>
</div>
</div>
</div>
</section>
<section class="hero is-light is-small" style="margin-top: 10px;">
<div class="hero-body" style="padding-top: 1rem; padding-bottom: 0.5rem;">
<!-- <div class="container shadow p-5 mb-5 bg-white rounded has-text-centered"> -->
<div class="video-section">
<!-- <h2 class="section-title">Comparison with SOTAs</h2> -->
<h2 class="title is-2" style="border: none;">Comparison with SOTAs</h2>
<div class="case-divider"></div>
<p class="comparison-prompt"><strong>Text Prompts:</strong> A turtle swims in turquoise water among
small fish, with birds chirping in the background.</p>
<div class="video-row">
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_0/3_ours.mp4" type="video/mp4"></video>
<p>Ours</p>
</div>
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_0/2_universe.mp4" type="video/mp4"></video>
<p>UniVerse-1</p>
</div>
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_0/1_javisdit.mp4" type="video/mp4"></video>
<p>JavisDiT</p>
</div>
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_0/0_veo3.mp4" type="video/mp4"></video>
<p>Veo3</p>
</div>
</div>
<!-- Case 2 -->
<div class="case-divider"></div>
<p class="comparison-prompt"><strong>Text Prompts:</strong> A girl in a white headscarf, black top, and
red skirt plays the flute beside another on piano.</p>
<div class="video-row">
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_1/3_ours.mp4" type="video/mp4"></video>
<p>Ours</p>
</div>
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_1/2_universe.mp4" type="video/mp4"></video>
<p>UniVerse-1</p>
</div>
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_1/1_javisdit.mp4" type="video/mp4"></video>
<p>JavisDiT</p>
</div>
<div class="video-container">
<video class="video-fixed-ratio" controls><source src="./static/videos/Fig6/case_1/0_veo3.mp4" type="video/mp4"></video>
<p>Veo3</p>
</div>
</div>
<!-- <div class="table-scroll">
<table class="table table-hover" id="gender_table_1" style="border: 2px solid #6a8fcc; border-radius: 18px;">
<thead>
<tr>
<th style="text-align: center">Prompt</th>
<th style="text-align: center">JavisDiT++ (ours)</th>
<th style="text-align: center">Universe</th>
<th style="text-align: center">Veo3</th>
<th style="text-align: center">JavisDiT</th>
</tr>
</thead>
<tbody>
<tr height=100px>
<td style="text-align:center; width: 300px; white-space: normal;"> <strong>A turtle swims in turquoise water among
small fish, with birds chirping in the background.</strong></td>
<td style="text-align: center"><video width="450" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_0/3_ours.mp4" type="video/mp4">
<td style="text-align: center"><video width="400" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_0/2_universe.mp4" type="video/mp4">
<td style="text-align: center"><video width="450" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_0/0_veo3.mp4" type="video/mp4">
<td style="text-align: center"><video width="450" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_0/1_javisdit.mp4" type="video/mp4">
</tr>
<tr height=100px>
<td style="text-align:center; width: 300px; white-space: normal;"><strong>A girl in a white headscarf, black top, and
red skirt plays the flute beside another on piano.</strong></td>
<td style="text-align: center"><video width="450" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_1/3_ours.mp4" type="video/mp4">
<td style="text-align: center"><video width="400" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_1/2_universe.mp4" type="video/mp4">
<td style="text-align: center"><video width="450" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_1/0_veo3.mp4" type="video/mp4">
<td style="text-align: center"><video width="450" controls controlslist="nodownload" class="px-1"><source src="./static/videos/Fig6/case_1/1_javisdit.mp4" type="video/mp4">
</tr>
</tbody>
</table>
<p> </p>
</div> -->
<br/>
<!--/ Interpolating. -->
</div>
<!--/ Animation. -->
</div>
</section>
<section class="hero is-light is-small" style="margin-top: 10px;">
<div class="hero-body" style="padding-top: 1rem; padding-bottom: 0.5rem;">
<!-- <div class="container shadow p-5 mb-5 bg-white rounded has-text-centered"> -->
<div class="video-section">
<!-- <h2 class="section-title">More JAVG Examples </h2> -->
<h2 class="title is-2" style="border: none;">More JAVG Examples</h2>
<div class="case-divider"></div>
<div class="video-grid">
<div class="video-card">
<p class="video-prompt">
Several pigeons are gathered on a rocky shore near the water. One pigeon splashes energetically, sending up ripples, while the others stand watching. The sound of splashing water, gurgling, and flapping wings fills the air.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/taser_videos/case_0.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A brown bear is walking towards the camera, growling in a natural setting with greenery in the background.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/taser_videos/case_1.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A young girl plays the piano.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/taser_videos/case_2.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A sports car races around a track bordered by grass and fences. The engine roars through the air.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/taser_videos/case_3.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A small wooden cabin stands in a rainy forest, with misty trees around it and the sound of heavy rain and distant thunder.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA8/case_0.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A black-and-white image shows suited musicians on stage playing saxophones, trumpets, and a tuba, music filling the air before a curtain backdrop.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA8/case_1.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A man with long curly hair and a beard plays an electric guitar in a studio, wearing a black t-shirt and gray pants. Behind him are a monitor, speakers, and a poster.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA8/case_2.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A group of sharks swim gracefully underwater, their fins and tails sending ripples through the clear water. The sound of gurgling and splashing follows their movement.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA8/case_3.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A large cartoonish alien head with big eyes and a small mouth appears on screen, looking concerned. Behind it, a dusk
cityscape with tall buildings and a river sets the scene, as a deep boom echoes, followed by a softer one.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA8/case_4.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A woman in a red dress walks barefoot across a sandy desert at sunset, her hair flowing as wind blows and faint footsteps sound
in the sand.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA9/case_0.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
At night, a narrow alley is lined with traffic cones and a rope barrier, its wet ground reflecting street lamps. Worn walls show
faded posters, and a bright light glows at the far end. The sound of rain falls over the empty scene.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA9/case_1.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A large waterfall cascades down a rocky cliff into a body of water below, creating a dramatic scene. The water is a deep
blue color, and there are greenish areas on the rocks near the waterfall. The sound of rushing water fills the air, steady and loud.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA9/case_2.mp4" type="video/mp4">
</video>
</div>
<!-- <div class="video-card">
<p class="video-prompt">
A young man with dark hair, wearing a green shirt, plays the violin, holding it under his chin and drawing the bow to produce
clear, melodic tones. The background is a plain wall, with soft shadows cast across it.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA9/case_3.mp4" type="video/mp4">
</video>
</div>
<div class="video-card">
<p class="video-prompt">
A yellow car with the number 34 on it is driving on a dirt road surrounded by trees, its engine revving up and then
accelerating as the tires skid on the dirt road.
</p>
<video controls controlslist="nodownload" playsinline>
<source src="./static/videos/FigA9/case_4.mp4" type="video/mp4">
</video>
</div> -->
</div>
<!-- <div class="table-scroll">
<table class="table table-hover" id="gender_table_1" style="border: 2px solid #6a8fcc; border-radius: 18px;">
<thead>
<tr>
<th style="text-align: center; width: 600px; white-space: normal;">Prompt: A small wooden cabin stands in a rainy forest, with misty trees around it and the sound of heavy rain and distant
thunder.</th>
<th style="text-align: center; width: 600px; white-space: normal;">Prompt: A black-and-white image shows suited musicians on stage playing saxophones, trumpets, and a tuba, music filling the
air before a curtain backdrop.</th>
<th style="text-align: center; width: 600px; white-space: normal;">Prompt: A man with long curly hair and a beard plays an electric guitar in a studio, wearing a black t-shirt and gray pants.
Behind him are a monitor, speakers, and a poster, as the sound of the guitar fills the room.</th>
<th style="text-align: center; width: 600px; white-space: normal;">Prompt: A group of sharks swim gracefully underwater, their fins and tails sending ripples through the clear water. The sound of
gurgling and splashing follows their movement and the currents, with the sandy, rocky seabed visible below.</th>
<th style="text-align: center; width: 600px; white-space: normal;">Prompt: A large cartoonish alien head with big eyes and a small mouth appears on screen, looking concerned. Behind it, a dusk
cityscape with tall buildings and a river sets the scene, as a deep boom echoes, followed by a softer one.</th>
</tr>
</thead>
<tbody>
<tr height=100px>
<td style="text-align: center"><video width="600" controls controlslist="nodownload" class="px-1"><source src="./static/videos/FigA8/case_0.mp4" type="video/mp4">
<td style="text-align: center"><video width="600" controls controlslist="nodownload" class="px-1"><source src="./static/videos/FigA8/case_1.mp4" type="video/mp4">
<td style="text-align: center"><video width="600" controls controlslist="nodownload" class="px-1"><source src="./static/videos/FigA8/case_2.mp4" type="video/mp4">
<td style="text-align: center"><video width="600" controls controlslist="nodownload" class="px-1"><source src="./static/videos/FigA8/case_3.mp4" type="video/mp4">
<td style="text-align: center"><video width="600" controls controlslist="nodownload" class="px-1"><source src="./static/videos/FigA8/case_4.mp4" type="video/mp4">
</tr>
</tbody>
</table>
<p> </p>
</div> -->
<br/>
<!--/ Interpolating. -->
</div>
<!--/ Animation. -->
</div>
</section>
<section class="section" id="BibTeX">
<div class="container is-max-desktop content">
<h2 class="title">BibTeX</h2>
<pre><code>@inproceedings{liu2026javisdit++,
title = {JavisDiT++: Unified Modeling and Optimization for Joint Audio-Video Generation},
author = {Kai Liu, Yanhao Zheng, Kai Wang, Shengqiong Wu, Rongjunchen Zhang, Jiebo Luo, Dimitrios Hatzinakos, Ziwei Liu, Tat-Seng Chua, and Hao Fei},
booktitle = {The Fourteenth International Conference on Learning Representations},
year = {2026},
}</code></pre>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<a class="icon-link" href="" class="external-link" disabled>
<i class="fab fa-github"></i>
</a>
</div>
<div class="columns is-centered">
<div class="column is-8">
<div class="content">
<p>
This website template is adapted from <a href="https://github.com/nerfies/nerfies.github.io">Nerfies</a>
</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>