-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
949 lines (916 loc) · 50.4 KB
/
Copy pathindex.html
File metadata and controls
949 lines (916 loc) · 50.4 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ArkComposer — AI-Native Music Composition</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=JetBrains+Mono:wght@300;400&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0c;
--bg2: #0f0f13;
--bg3: #141418;
--surface: #1a1a20;
--border: #2a2a35;
--accent: #c8a96e;
--accent2: #7eb8c8;
--text: #e8e6e0;
--text2: #9a9890;
--text3: #5a5855;
--warn: #c8906e;
--warn-bg: #1e1210;
--warn-border: #3a2a20;
--info: #6ab86a;
--info-bg: #0e1e0e;
--info-border: #2a3a2a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: 'JetBrains Mono', monospace;
font-weight: 300;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image: repeating-linear-gradient(
transparent, transparent 28px,
#ffffff04 28px, #ffffff04 29px
);
pointer-events: none;
z-index: 0;
}
/* NAV */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 20px 48px;
display: flex;
align-items: center;
justify-content: space-between;
background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}
.nav-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 600;
letter-spacing: 0.12em;
color: var(--accent);
text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
color: var(--text2);
text-decoration: none;
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
/* NOTICE BANNER */
.notice-banner {
position: relative;
z-index: 10;
margin-top: 72px;
background: var(--warn-bg);
border-bottom: 1px solid var(--warn-border);
padding: 14px 48px;
display: flex;
flex-wrap: wrap;
gap: 8px 24px;
align-items: flex-start;
}
.notice-item {
display: flex;
align-items: flex-start;
gap: 10px;
flex: 1;
min-width: 280px;
}
.notice-icon { font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.notice-text { font-size: 10px; line-height: 1.8; color: var(--text2); }
.notice-text strong { color: var(--warn); font-weight: 400; }
.notice-text .ko { color: var(--text3); font-size: 10px; }
/* HERO */
.hero {
position: relative;
z-index: 1;
min-height: 90vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 80px 48px 80px;
}
.hero-eyebrow {
font-size: 10px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 28px;
opacity: 0;
animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(64px, 10vw, 120px);
font-weight: 300;
line-height: 0.9;
letter-spacing: -0.02em;
color: var(--text);
margin-bottom: 8px;
opacity: 0;
animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-title span { color: var(--accent); font-style: italic; }
.hero-sub {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(18px, 2.5vw, 28px);
font-weight: 300;
font-style: italic;
color: var(--text2);
margin-bottom: 48px;
opacity: 0;
animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-desc {
font-size: 12px;
line-height: 2;
color: var(--text2);
max-width: 560px;
margin-bottom: 56px;
opacity: 0;
animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-desc .ko { font-size: 11px; color: var(--text3); margin-top: 6px; display: block; }
.hero-cta {
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
opacity: 0;
animation: fadeUp 0.8s ease forwards 1s;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
background: var(--accent);
color: #0a0a0c;
text-decoration: none;
font-size: 11px;
font-weight: 400;
letter-spacing: 0.15em;
text-transform: uppercase;
transition: all 0.2s;
}
.btn-primary:hover { background: #e0c080; transform: translateY(-2px); }
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
border: 1px solid var(--border);
color: var(--text2);
text-decoration: none;
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
/* SCREENSHOT */
.screenshot-section {
position: relative;
z-index: 1;
padding: 0 48px 120px;
display: flex;
justify-content: center;
}
.screenshot-wrapper {
position: relative;
max-width: 1100px;
width: 100%;
opacity: 0;
animation: fadeUp 1s ease forwards 1.2s;
}
.screenshot-wrapper::before {
content: '';
position: absolute;
inset: -1px;
background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, var(--accent2) 100%);
opacity: 0.3;
z-index: -1;
}
.screenshot-wrapper img { width: 100%; display: block; border: 1px solid var(--border); }
/* SECTION DIVIDER */
.section-divider {
position: relative;
z-index: 1;
text-align: center;
padding: 0 48px;
margin-bottom: 80px;
}
.section-divider::before {
content: '';
display: block;
height: 1px;
background: linear-gradient(to right, transparent, var(--border), transparent);
margin-bottom: 28px;
}
.section-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text3); }
/* FEATURES */
.features {
position: relative;
z-index: 1;
padding: 0 48px 120px;
max-width: 1200px;
margin: 0 auto;
}
.features-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 300; margin-bottom: 8px; }
.features-title-ko { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 32px); font-weight: 300; font-style: italic; color: var(--text3); margin-bottom: 64px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-card { background: var(--bg2); padding: 40px 36px; transition: background 0.2s; }
.feature-card:hover { background: var(--bg3); }
.feature-icon { font-size: 24px; margin-bottom: 20px; }
.feature-name { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 6px; }
.feature-name-ko { font-size: 11px; color: var(--text3); margin-bottom: 16px; }
.feature-desc { font-size: 11px; line-height: 1.8; color: var(--text2); }
/* MCP */
.mcp-section {
position: relative;
z-index: 1;
padding: 0 48px 120px;
max-width: 1200px;
margin: 0 auto;
}
.mcp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 300; margin-bottom: 8px; }
.mcp-title-ko { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 32px); font-weight: 300; font-style: italic; color: var(--text3); margin-bottom: 64px; }
.mcp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mcp-card { background: var(--surface); border: 1px solid var(--border); padding: 36px; }
.mcp-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.mcp-badge { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; background: #1e3a1e; color: #6abf6a; border: 1px solid #2a4a2a; }
.mcp-card-title { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text); }
.code-block { background: #0d0d10; border: 1px solid var(--border); padding: 20px 24px; font-size: 11px; line-height: 1.8; color: #a8c4a8; overflow-x: auto; margin-top: 16px; }
.code-block .comment { color: var(--text3); }
.code-block .key { color: var(--accent2); }
.code-block .val { color: var(--accent); }
/* CLAUDE DESKTOP DEMO */
.demo-section {
position: relative;
z-index: 1;
padding: 0 48px 120px;
max-width: 1200px;
margin: 0 auto;
}
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.demo-image-wrapper {
position: relative;
border: 1px solid var(--border);
overflow: hidden;
}
.demo-image-wrapper::before {
content: '';
position: absolute;
inset: -1px;
background: linear-gradient(135deg, var(--accent2) 0%, transparent 60%);
opacity: 0.2;
z-index: -1;
}
.demo-image-wrapper img { width: 100%; display: block; }
.demo-caption {
margin-top: 12px;
font-size: 10px;
letter-spacing: 0.15em;
color: var(--text3);
text-align: center;
}
.demo-desc { padding: 8px 0; }
.demo-desc h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 32px;
font-weight: 300;
margin-bottom: 6px;
color: var(--text);
}
.demo-desc h3 span { color: var(--accent2); font-style: italic; }
.demo-desc-sub { font-size: 13px; color: var(--text3); font-style: italic; margin-bottom: 28px; font-family: 'Cormorant Garamond', serif; }
.demo-steps { list-style: none; counter-reset: steps; }
.demo-steps li {
counter-increment: steps;
padding: 16px 0;
border-bottom: 1px solid var(--border);
font-size: 11px;
line-height: 1.8;
color: var(--text2);
display: flex;
gap: 16px;
}
.demo-steps li::before {
content: counter(steps, decimal-leading-zero);
font-size: 10px;
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}
.demo-steps .ko { color: var(--text3); font-size: 10px; display: block; margin-top: 4px; }
.codex-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
.codex-shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.codex-shot { background: var(--surface); border: 1px solid var(--border); padding: 16px; }
.codex-shot img { width: 100%; display: block; border: 1px solid var(--border); }
.codex-shot p { margin-top: 12px; font-size: 11px; color: var(--text3); line-height: 1.8; }
.codex-shot-large { background: var(--surface); border: 1px solid var(--border); padding: 18px; }
.codex-shot-large img { width: 100%; display: block; border: 1px solid var(--border); }
.codex-shot-large p { margin-top: 14px; font-size: 11px; color: var(--text2); line-height: 1.9; }
/* TOOLS TABLE */
.tools-section { position: relative; z-index: 1; padding: 0 48px 120px; max-width: 1200px; margin: 0 auto; }
.tools-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 300; margin-bottom: 8px; }
.tools-title-ko { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 32px); font-weight: 300; font-style: italic; color: var(--text3); margin-bottom: 48px; }
.tools-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.tools-table th { text-align: left; padding: 12px 20px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text3); border-bottom: 1px solid var(--border); }
.tools-table td { padding: 14px 20px; border-bottom: 1px solid #1a1a1f; color: var(--text2); vertical-align: top; }
.tools-table tr:hover td { background: var(--surface); }
.tool-tag { display: inline-block; font-size: 10px; padding: 2px 8px; background: #1a1e2a; color: var(--accent2); border: 1px solid #2a2e3a; margin: 2px; font-family: 'JetBrains Mono', monospace; }
/* AUTHOR */
.author-section { position: relative; z-index: 1; padding: 80px 48px 120px; max-width: 1200px; margin: 0 auto; }
.author-card { background: var(--surface); border: 1px solid var(--border); padding: 56px; display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
.author-name { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--text); line-height: 1.1; margin-bottom: 4px; }
.author-name-ko { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; font-style: italic; color: var(--text3); margin-bottom: 24px; }
.author-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); line-height: 2; }
.author-title a { color: var(--accent); text-decoration: none; }
.author-title a:hover { text-decoration: underline; }
.author-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; font-style: italic; color: var(--text2); line-height: 1.6; margin-bottom: 16px; border-left: 2px solid var(--accent); padding-left: 24px; }
.author-quote-ko { font-size: 13px; color: var(--text3); line-height: 2; padding-left: 26px; margin-bottom: 32px; }
.author-company { font-size: 11px; color: var(--text2); line-height: 2; }
.author-company a { color: var(--accent); text-decoration: none; }
.author-company a:hover { text-decoration: underline; }
/* CONTACT */
.contact-section { position: relative; z-index: 1; padding: 0 48px 80px; max-width: 1200px; margin: 0 auto; }
.contact-card { background: var(--bg2); border: 1px solid var(--border); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.contact-left {}
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 4px; }
.contact-title-ko { font-size: 13px; color: var(--text3); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.contact-email { font-size: 14px; color: var(--accent); letter-spacing: 0.05em; font-weight: 400; }
.contact-desc { font-size: 11px; color: var(--text2); line-height: 2; margin-top: 8px; }
.contact-desc .ko { color: var(--text3); font-size: 10px; }
/* DOWNLOAD */
.download-section { position: relative; z-index: 1; padding: 0 48px 160px; text-align: center; }
.download-inner { max-width: 700px; margin: 0 auto; border: 1px solid var(--border); padding: 80px 48px; background: var(--bg2); position: relative; overflow: hidden; }
.download-inner::before { content: '🎼'; position: absolute; font-size: 200px; opacity: 0.03; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.download-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; margin-bottom: 8px; }
.download-title-ko { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; color: var(--text3); margin-bottom: 16px; }
.download-desc { font-size: 11px; color: var(--text2); line-height: 2; margin-bottom: 8px; }
.download-desc-ko { font-size: 11px; color: var(--text3); line-height: 2; margin-bottom: 40px; }
.download-meta { font-size: 10px; color: var(--text3); letter-spacing: 0.15em; margin-top: 24px; }
/* FOOTER */
footer { position: relative; z-index: 1; padding: 40px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--accent); font-weight: 600; letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 10px; color: var(--text3); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
nav { padding: 16px 24px; }
.nav-links { display: none; }
.notice-banner { padding: 12px 24px; }
.hero { padding: 60px 24px 60px; }
.features, .mcp-section, .demo-section, .tools-section, .author-section, .contact-section { padding-left: 24px; padding-right: 24px; }
.mcp-grid, .demo-grid, .codex-shot-grid { grid-template-columns: 1fr; }
.author-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px; }
.download-section { padding: 0 24px 80px; }
footer { flex-direction: column; gap: 20px; text-align: center; }
.footer-links { flex-wrap: wrap; justify-content: center; }
.contact-card { flex-direction: column; padding: 32px 24px; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<a href="#" class="nav-logo">ArkComposer</a>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#mcp">MCP / AI</a></li>
<li><a href="#builtin-ai">Built-in AI</a></li>
<li><a href="#author">Author</a></li>
<li><a href="#credits">Credits</a></li>
<li><a href="#download">Download</a></li>
<li><a href="https://github.com/arkark2010arkark/ArkComposer" target="_blank">GitHub</a></li>
</ul>
</nav>
<!-- NOTICE BANNER -->
<div class="notice-banner">
<div class="notice-item">
<span class="notice-icon">⚠️</span>
<div class="notice-text">
<strong>Free Version Notice:</strong> This personal hobby project is distributed for free. It is not fully finished yet, so please forgive minor bugs and rough edges. Feedback is always welcome.<br>
<span class="ko">무료 버전 공지: 개인 취미 프로젝트이므로 무료로 배포하고 있습니다. 아직 개발이 완성된 상태는 아니어서 자잘한 버그가 있을 수 있으니 너그럽게 양해 부탁드립니다. 피드백은 언제나 환영합니다.</span>
</div>
</div>
<div class="notice-item">
<span class="notice-icon">🧪</span>
<div class="notice-text">
<strong>Built-in AI (Experimental):</strong> The built-in AI composition features are experimental. The model will continuously improve as training progresses — expect better results over time.<br>
<span class="ko">내장 AI (실험적): Built-in AI 작곡 기능은 실험적으로 개발 중입니다. 학습 방향에 따라 점점 더 나은 모델이 제공될 예정입니다.</span>
</div>
</div>
</div>
<!-- HERO -->
<section class="hero">
<p class="hero-eyebrow">A Personal Hobby AI-Driven Composer IDE</p>
<h1 class="hero-title">Ark<span>Composer</span></h1>
<p class="hero-sub">A personal hobby project for AI-assisted composition</p>
<p class="hero-desc">
A personal hobby AI-driven Composer IDE with a built-in MCP server and a built-in AI that is still actively being trained.<br>
Now with a full piano-roll style <strong style="color:var(--text)">Edit Measure (MIDI)</strong> editor, direct <strong style="color:var(--text)">AI Voicing</strong> and <strong style="color:var(--text)">AI Accomp</strong> actions, melody recording from mic-in or sound playback, a clearer top-bar workflow with status bar, and built-in update checking.<br>
Connect Claude Code Desktop, Codex app, or any MCP-capable AI client and compose together in natural language.<br>
<span class="ko">개인적인 취미로 만드는 AI 기반 Composer IDE입니다. 피아노롤 스타일의 Edit Measure (MIDI) 편집기, AI Voicing·AI Accomp 직접 호출, 마이크 입력/사운드 재생 기반 멜로디 녹음 악보 변환, 상태바가 포함된 새 상단 워크플로, 자동 업데이트 기능이 추가되었습니다. 악보 편집부터 AI 작곡까지 대화로 음악을 만들 수 있습니다.</span>
</p>
<div class="hero-cta">
<a href="#download" class="btn-primary">↓ Download Free · 무료 다운로드</a>
<a href="https://github.com/arkark2010arkark/ArkComposer" class="btn-secondary" target="_blank">GitHub →</a>
<a href="claude-desktop-guide.html" class="btn-secondary">Claude Desktop Guide →</a>
<a href="CodeX-App-guide.html" class="btn-secondary">Codex App Guide →</a>
</div>
</section>
<!-- SCREENSHOT -->
<div class="screenshot-section">
<div class="screenshot-wrapper reveal">
<img src="docs/screenshot.png" alt="ArkComposer — Multi-track score editor with AI composition tools">
</div>
</div>
<!-- FEATURES -->
<section class="features" id="features">
<div class="section-divider reveal"><span class="section-label">Features · 기능</span></div>
<h2 class="features-title reveal">Everything you need<br>to compose.</h2>
<p class="features-title-ko reveal">작곡에 필요한 모든 것.</p>
<div class="features-grid">
<div class="feature-card reveal">
<div class="feature-icon">🎼</div>
<div class="feature-name">Full Score Editor</div>
<div class="feature-name-ko">완전한 악보 편집기</div>
<div class="feature-desc">Multi-track notation with notes, rests, dynamics, key/time signatures, lyrics, and chord symbols.<br><br>멀티트랙 악보 편집 — 음표, 쉼표, 나타냄말, 조표, 박자표, 가사, 화음 기호.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🎹</div>
<div class="feature-name">Edit Measure (MIDI)</div>
<div class="feature-name-ko">마디 편집 — 피아노롤</div>
<div class="feature-desc">Piano-roll style editor with Edit / Insert / Delete / Tie modes. Track-wide measure navigation, built-in playback, velocity shaping, and direct AI Voicing & AI Accomp actions — all without leaving the score workflow.<br><br>피아노롤 스타일 편집기 — 편집/삽입/삭제/타이 모드, 트랙 내 마디 탐색, 재생, 벨로시티 조절, AI Voicing·AI Accomp 직접 호출을 악보 워크플로 안에서 바로 사용.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🧭</div>
<div class="feature-name">Top-Bar Workflow & Status Bar</div>
<div class="feature-name-ko">상단 바 워크플로 & 상태 바</div>
<div class="feature-desc">Edit Measure is the primary action. Measure Select, Note Select, and Score Edit split selection from editing. A status bar shows current mode, tool, track, measures, rhythm, melody, and AI state at a glance.<br><br>Edit Measure가 주 동작. Measure Select·Note Select·Score Edit로 모드 분리. 상태 바에서 현재 모드, 도구, 트랙, 리듬, 멜로디, AI 상태를 한눈에 확인.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🤖</div>
<div class="feature-name">AI Voicing & AI Accompaniment</div>
<div class="feature-name-ko">AI 보이싱 & AI 반주</div>
<div class="feature-desc">AI Voicing from the top menu or inside Edit Measure (MIDI). AI Accomp generates accompaniment following melody and harmony. Styles include AI Chord Beat, AI Arpeggio, AI Free, AI Free (Melody Variation), and AI Drum Beat.<br><br>AI Voicing은 상단 메뉴 및 Edit Measure에서 직접 호출. AI Accomp는 멜로디·화성을 따르는 반주를 생성. AI Chord Beat, AI Arpeggio, AI Free, AI Free (Melody Variation), AI Drum Beat 스타일 지원.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🎵</div>
<div class="feature-name">Melody & Rhythm Variation</div>
<div class="feature-name-ko">멜로디 & 리듬 변주</div>
<div class="feature-desc">Inversion, retrograde, augmentation, pentatonic, passing tones. Genre-based rhythm patterns.<br><br>전위, 역행, 확대, 5음 음계, 경과음. 장르별 리듬 패턴 변주.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🎙️</div>
<div class="feature-name">Melody Recording to Score</div>
<div class="feature-name-ko">멜로디 녹음 악보 변환</div>
<div class="feature-desc">Record melody from mic input or system sound playback, analyze the pitch flow, and convert the result into editable score notation.<br><br>마이크 입력 또는 PC에서 재생되는 사운드를 녹음해 멜로디 흐름을 분석하고, 편집 가능한 악보 음표로 변환합니다.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🎹</div>
<div class="feature-name">SoundFont Playback</div>
<div class="feature-name-ko">사운드폰트 재생</div>
<div class="feature-desc">Per-track instrument assignment with .sf2 SoundFont support. Enlarged volume controls, improved transport. Export to WAV and MP3.<br><br>트랙별 악기 지정, SF2 사운드폰트 지원. 개선된 볼륨 컨트롤·재생 흐름. WAV/MP3 내보내기.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🎬</div>
<div class="feature-name">MP4 Video Export</div>
<div class="feature-name-ko">MP4 동영상 내보내기</div>
<div class="feature-desc">Offline MP4/H.264 rendering with score frames, playback cursor, and optional AAC audio through bundled FFmpeg.<br><br>악보 화면, 재생 커서, 선택적 AAC 오디오를 포함한 오프라인 MP4/H.264 동영상 내보내기. 번들 FFmpeg를 사용합니다.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">📊</div>
<div class="feature-name">Melodic Mood Overlay</div>
<div class="feature-name-ko">멜로딕 무드 오버레이</div>
<div class="feature-desc">Visual stability/tension analysis on every note. 3 color styles: Jewel, Muted, Editorial.<br><br>음표별 안정/전환/긴장 시각화. 3가지 색상 스타일.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🔄</div>
<div class="feature-name">MIDI Import / Export</div>
<div class="feature-name-ko">MIDI 가져오기 / 내보내기</div>
<div class="feature-desc">Import MIDI files and convert to editable score. Export to standard MIDI format.<br><br>MIDI 파일을 악보로 변환. 표준 MIDI 형식으로 내보내기.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">📑</div>
<div class="feature-name">Score Export</div>
<div class="feature-name-ko">악보 내보내기</div>
<div class="feature-desc">Export your score as PDF, PNG, or JPG. Native score format: .ark using ArkScore v3 compact JSON. Legacy .json/.arkscore files remain readable.<br><br>PDF, PNG, JPG로 악보 내보내기. 기본 저장 형식은 ArkScore v3 compact JSON 기반 .ark이며, 기존 .json/.arkscore 파일도 읽을 수 있습니다.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🎛️</div>
<div class="feature-name">Plugin Filter System</div>
<div class="feature-name-ko">플러그인 필터 구조</div>
<div class="feature-desc">Distortion, Echo, and more. Extensible plugin architecture for custom audio effects.<br><br>디스토션, 에코 등 오디오 이펙트 필터. 확장 가능한 플러그인 구조.</div>
</div>
<div class="feature-card reveal">
<div class="feature-icon">🔃</div>
<div class="feature-name">Auto Update Check</div>
<div class="feature-name-ko">자동 업데이트 확인</div>
<div class="feature-desc">Check for Updates compares your version against the latest GitHub Release and prepares the download/apply flow.<br><br>Check for Updates로 최신 GitHub Release와 버전을 비교하고 다운로드/적용 흐름을 안내합니다.</div>
</div>
</div>
</section>
<!-- MCP / AI -->
<section class="mcp-section" id="mcp">
<div class="section-divider reveal"><span class="section-label">AI Integration · AI 연동</span></div>
<h2 class="mcp-title reveal">Talk to your score.</h2>
<p class="mcp-title-ko reveal">악보에게 말을 거세요.</p>
<div class="mcp-grid">
<div class="mcp-card reveal">
<div class="mcp-card-header">
<span class="mcp-badge">✅ Tested</span>
<span class="mcp-card-title">Mode 1 — stdio · Claude Code Desktop</span>
</div>
<div style="font-size:11px; color:var(--text2); line-height:1.8; margin-bottom:16px;">
Launch ArkComposer as an MCP stdio server and connect directly from <strong style="color:var(--text)">Claude Code Desktop</strong>.<br>
<span style="color:var(--text3)">Claude Code Desktop에서 직접 MCP stdio로 연결합니다.</span>
</div>
<div class="code-block">
<span class="comment">// claude_desktop_config.json</span>
{
<span class="key">"mcpServers"</span>: {
<span class="key">"arkcomposer"</span>: {
<span class="key">"command"</span>: <span class="val">"ArkComposer.exe"</span>,
<span class="key">"args"</span>: [<span class="val">"--mcp-mode"</span>]
}
}
}
</div>
</div>
<div class="mcp-card reveal">
<div class="mcp-card-header">
<span class="mcp-badge">✅ Tested</span>
<span class="mcp-card-title">Mode 2 — HTTP/SSE · Codex App</span>
</div>
<div style="font-size:11px; color:var(--text2); line-height:1.8; margin-bottom:16px;">
Start the MCP server from the ArkComposer UI, then register the HTTP/SSE endpoint in the Codex app MCP settings.<br>
<span style="color:var(--text3)">ArkComposer에서 MCP 서버를 켠 뒤, Codex app MCP 설정에 HTTP/SSE 주소를 등록합니다.</span>
</div>
<div class="code-block">
<span class="comment"># 1. Run ArkComposer normally</span>
<span class="comment"># 2. Left palette → MCP Server → Start</span>
<span class="comment"># 3. Open Codex app → Settings → MCP servers</span>
<span class="comment"># 4. Set URL to:</span>
http://localhost:<span class="val">9101</span>/sse
</div>
</div>
<div class="mcp-card reveal">
<div class="mcp-card-header">
<span class="mcp-badge">✅ Tested</span>
<span class="mcp-card-title">Mode 3 — TCP · Advanced / CLI</span>
</div>
<div style="font-size:11px; color:var(--text2); line-height:1.8; margin-bottom:16px;">
For raw JSON-RPC clients, use the TCP port exposed by ArkComposer. This is useful for Codex CLI or custom MCP tooling.<br>
<span style="color:var(--text3)">raw JSON-RPC 클라이언트는 ArkComposer의 TCP 포트에 직접 연결할 수 있습니다. Codex CLI나 커스텀 도구에 적합합니다.</span>
</div>
<div class="code-block">
<span class="comment"># 1. Run ArkComposer normally</span>
<span class="comment"># 2. Left palette → MCP Server → Start</span>
<span class="comment"># 3. Connect your client to:</span>
localhost:<span class="val">9100</span>
</div>
</div>
</div>
<div style="margin-top:24px; padding:24px 36px; background:var(--bg2); border:1px solid var(--border); font-size:11px; color:var(--text3); line-height:2;" class="reveal">
<span style="color:var(--accent)">Note for Codex app:</span> If you want to switch between HTTP/SSE and stdio inside the Codex app, uninstall the existing ArkComposer MCP entry first, then create the new one.<br>
<span style="color:#3a3a3f">Codex app에서는 HTTP/SSE와 stdio 타입을 서로 바꾸려면, 기존 ArkComposer MCP 항목을 먼저 제거한 뒤 새로 등록해야 합니다.</span><br><br>
<span style="color:var(--warn)">Note on ChatGPT:</span> ChatGPT does not natively support MCP. A separate OpenAPI server is required to bridge ChatGPT function calls to ArkComposer's MCP tools.<br>
<span style="color:#3a3a3f">ChatGPT는 MCP를 직접 지원하지 않습니다. ChatGPT 연동을 위해서는 별도의 OpenAPI 서버 구현이 필요합니다.</span>
</div>
</section>
<!-- CLAUDE CODE DESKTOP DEMO -->
<section class="demo-section">
<div class="section-divider reveal"><span class="section-label">Claude Code Desktop Demo · 실제 연동 화면</span></div>
<div class="demo-grid">
<div class="reveal">
<div class="demo-image-wrapper">
<img src="docs/claude_desktop_demo.png" alt="ArkComposer connected as MCP server in Claude Code Desktop">
</div>
<p class="demo-caption">Claude Code Desktop — ArkComposer MCP Connected · 실제 연동 화면</p>
</div>
<div class="demo-desc reveal">
<h3>Claude Code <span>Desktop</span></h3>
<p class="demo-desc-sub">ArkComposer as MCP Server · MCP 서버로 연동</p>
<ul class="demo-steps">
<li>
<div>
Add ArkComposer to <code style="color:var(--accent); font-size:10px;">claude_desktop_config.json</code> as an MCP server using <code style="color:var(--accent); font-size:10px;">--mcp-mode</code>
<span class="ko">claude_desktop_config.json에 MCP 서버로 등록합니다.</span>
</div>
</li>
<li>
<div>
Open Claude Code Desktop → Click <strong style="color:var(--text)">Connector</strong> → Enable <strong style="color:var(--accent)">arkcomposer</strong> toggle
<span class="ko">Claude Code Desktop 실행 → 커넥터 → arkcomposer 활성화</span>
</div>
</li>
<li>
<div>
Start composing in natural language: <em style="color:var(--accent2)">"Create a 8-bar melody in C major"</em>
<span class="ko">자연어로 작곡 시작: "C장조로 8마디 멜로디 만들어줘"</span>
</div>
</li>
<li>
<div>
ArkComposer updates the score in real time as the AI edits it
<span class="ko">AI가 악보를 편집하는 동시에 ArkComposer에서 실시간 반영됩니다.</span>
</div>
</li>
</ul>
</div>
</div>
</section>
<!-- CODEX APP DEMO -->
<section class="demo-section" id="codex-app">
<div class="section-divider reveal"><span class="section-label">Codex App Demo · 실제 연동 화면</span></div>
<div class="codex-layout">
<div class="demo-desc reveal">
<h3>Codex <span>App</span></h3>
<p class="demo-desc-sub">Fast public setup for ArkComposer MCP · 일반 사용자용 빠른 설정</p>
<p style="font-size:11px; line-height:1.9; color:var(--text2); margin-bottom:24px;">
Need a full walkthrough with larger screenshots? Open the dedicated <a href="CodeX-App-guide.html" style="color:var(--accent); text-decoration:none;">Codex App Guide</a>.<br>
<span class="ko" style="display:block; margin-top:4px; color:var(--text3); font-size:10px;">큰 화면 이미지와 자세한 설명은 별도 Codex App Guide 페이지에서 볼 수 있습니다.</span>
</p>
<ul class="demo-steps">
<li>
<div>
Open ArkComposer normally, then click <strong style="color:var(--text)">Left Palette → MCP Server</strong> and start the server.
<span class="ko">ArkComposer를 일반 실행한 뒤, 왼쪽 팔레트 → MCP Server를 눌러 서버를 시작합니다.</span>
</div>
</li>
<li>
<div>
In the Codex app, open <strong style="color:var(--text)">Settings → MCP servers</strong> and register the HTTP/SSE endpoint <code style="color:var(--accent); font-size:10px;">http://localhost:9101/sse</code>.
<span class="ko">Codex app에서 Settings → MCP servers로 이동해 <code style="color:var(--accent); font-size:10px;">http://localhost:9101/sse</code> 주소를 등록합니다.</span>
</div>
</li>
<li>
<div>
If you prefer stdio instead, set <code style="color:var(--accent); font-size:10px;">ArkComposer.exe</code> with argument <code style="color:var(--accent); font-size:10px;">--mcp-mode</code>.
<span class="ko">stdio 방식을 원하면 <code style="color:var(--accent); font-size:10px;">ArkComposer.exe</code>와 <code style="color:var(--accent); font-size:10px;">--mcp-mode</code>를 등록합니다.</span>
</div>
</li>
<li>
<div>
Start with direct prompts such as <em style="color:var(--accent2)">“Compose a ballad song with 20 measures.”</em> or <em style="color:var(--accent2)">“Add a 4-bar intro to the current song.”</em>
<span class="ko">예: “20마디 발라드 곡 만들어줘”, “현재 곡에 4마디 전주 넣어줘”처럼 바로 지시하면 됩니다.</span>
</div>
</li>
<li>
<div>
Codex reads the current score through MCP, plans the edit, and ArkComposer reflects the result in real time.
<span class="ko">Codex가 MCP로 현재 악보를 읽고 편집 계획을 세우면, 결과가 ArkComposer에 실시간으로 반영됩니다.</span>
</div>
</li>
</ul>
</div>
<div class="codex-shot-large reveal">
<img src="docs/CodeXComposingSong.png" alt="Codex app composing directly into ArkComposer via MCP">
<p>Live composing flow: Codex prompt on the left, ArkComposer score updating on the right. This image works best as a large overview, not as a small thumbnail.</p>
</div>
<div class="codex-shot-grid">
<div class="codex-shot-large reveal">
<img src="docs/MCP_server.png" alt="ArkComposer MCP Server dialog showing default ports 9100 and 9101">
<p>Step 1 in ArkComposer: open the left palette, click <code>MCP Server</code>, and start the server. The default ports are TCP <code>9100</code> and HTTP/SSE <code>9101</code>.</p>
</div>
<div class="codex-shot-large reveal">
<img src="docs/MCP_HTTP.png" alt="Codex app MCP server settings using the HTTP SSE URL http://localhost:9101/sse">
<p>Recommended in the Codex app: register the MCP server URL as <code>http://localhost:9101/sse</code>. This is the simplest path for most users.</p>
</div>
</div>
<div class="codex-shot-grid">
<div class="codex-shot reveal">
<img src="docs/MCP_stdio.png" alt="Codex app MCP stdio setup using ArkComposer.exe with --mcp-mode">
<p>Alternative setup: use stdio with <code>ArkComposer.exe</code> and the argument <code>--mcp-mode</code> if you want the client to launch ArkComposer directly.</p>
</div>
<div class="codex-shot reveal">
<img src="docs/conversation_with_codex.png" alt="Short Codex conversation launching ArkComposer MCP mode and then requesting a 20 measure ballad">
<p>The conversation itself should stay simple: connect first, then ask for concrete music tasks in plain language.</p>
</div>
</div>
</div>
</section>
<!-- BUILT-IN AI ACCOMPANIMENT -->
<section class="demo-section" id="builtin-ai">
<div class="section-divider reveal"><span class="section-label">Built-in AI Accompaniment · 내장 AI 반주</span></div>
<div class="demo-grid">
<div class="reveal">
<div class="demo-image-wrapper">
<img src="docs/BuiltIn_AI_AbleAccompaniment.png" alt="ArkComposer Built-in AI Accompaniment generating backing tracks">
</div>
<p class="demo-caption">Built-in AI Accompaniment · 내장 AI 반주 생성 화면</p>
</div>
<div class="demo-desc reveal">
<h3>Built-in <span>AI</span></h3>
<p class="demo-desc-sub">AI Voicing · AI Accomp · Local ONNX Models · 로컬 AI 모델</p>
<ul class="demo-steps">
<li>
<div>
Access <strong style="color:var(--text)">AI Voicing</strong> from the AI Helper menu or directly inside <strong style="color:var(--accent)">Edit Measure (MIDI)</strong> for cleaner voicing and redistribution.
<span class="ko">AI Helper 메뉴 또는 Edit Measure (MIDI) 안에서 AI Voicing을 바로 호출하여 보이싱을 개선합니다.</span>
</div>
</li>
<li>
<div>
Use <strong style="color:var(--text)">AI Accomp</strong> inside Edit Measure (MIDI) to generate accompaniment that follows the current melody and harmony.
<span class="ko">Edit Measure (MIDI) 안에서 AI Accomp를 사용해 현재 멜로디·화성에 맞는 반주를 생성합니다.</span>
</div>
</li>
<li>
<div>
Choose from styles: <em style="color:var(--accent2)">AI Chord Beat, AI Arpeggio, AI Free, AI Free (Melody Variation), AI Drum Beat</em>
<span class="ko">AI Chord Beat, AI Arpeggio, AI Free, AI Free (Melody Variation), AI Drum Beat 등 다양한 스타일.</span>
</div>
</li>
<li>
<div>
Built-in ONNX, TinyGRU, and Demucs-based audio models run locally — no internet required. Models improve as training progresses.
<span class="ko">내장 ONNX, TinyGRU, Demucs 기반 오디오 모델은 로컬에서 동작하며 인터넷 없이 사용 가능. 학습에 따라 지속 개선.</span>
</div>
</li>
</ul>
</div>
</div>
</section>
<!-- MCP TOOLS TABLE -->
<section class="tools-section">
<div class="section-divider reveal"><span class="section-label">MCP Tool Surface</span></div>
<h2 class="tools-title reveal">Full score editing API.</h2>
<p class="tools-title-ko reveal">완전한 악보 편집 API.</p>
<table class="tools-table reveal">
<thead>
<tr>
<th>Category · 분류</th>
<th>Tools</th>
</tr>
</thead>
<tbody>
<tr>
<td style="color:var(--text); font-size:11px;">Score Reading<br><span style="color:var(--text3); font-size:10px;">악보 읽기</span></td>
<td><span class="tool-tag">get_score</span><span class="tool-tag">get_score_range</span><span class="tool-tag">get_score_compact</span><span class="tool-tag">get_score_range_compact</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">Note Editing<br><span style="color:var(--text3); font-size:10px;">음표 편집</span></td>
<td><span class="tool-tag">add_note</span><span class="tool-tag">add_notes_batch</span><span class="tool-tag">add_notes_compact</span><span class="tool-tag">change_note</span><span class="tool-tag">delete_note</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">Track Management<br><span style="color:var(--text3); font-size:10px;">트랙 관리</span></td>
<td><span class="tool-tag">add_track</span><span class="tool-tag">delete_track</span><span class="tool-tag">set_track_props</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">Measure Management<br><span style="color:var(--text3); font-size:10px;">마디 관리</span></td>
<td><span class="tool-tag">add_measure</span><span class="tool-tag">delete_measure</span><span class="tool-tag">delete_measures_range</span><span class="tool-tag">clear_measure</span><span class="tool-tag">set_measure_props</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">Document<br><span style="color:var(--text3); font-size:10px;">문서</span></td>
<td><span class="tool-tag">new_song</span><span class="tool-tag">set_title</span><span class="tool-tag">undo</span></td>
</tr>
</tbody>
</table>
</section>
<!-- AUTHOR -->
<section class="author-section" id="author">
<div class="section-divider reveal"><span class="section-label">Author · 제작자</span></div>
<div class="author-card reveal">
<div class="author-left">
<div class="author-name">Park<br>Byoung Gu</div>
<div class="author-name-ko">박병구</div>
<div class="author-title">
Director<br>
SW Group Manager<br>
<a href="https://www.ajinextek.com" target="_blank">AXT · Ajinextek</a>
</div>
</div>
<div class="author-right">
<div class="author-quote">"A personal project built on weekends and spare moments, driven by a deep love of music."</div>
<div class="author-quote-ko">음악을 사랑하는 마음에, 주말마다 짬짬이 만든 개인 취미 프로젝트입니다.</div>
<div class="author-company">
Director & SW Group Manager at<br>
<a href="https://www.ajinextek.com" target="_blank">AXT (Ajinextek)</a> —
a leading company in industrial motion controller markets, leading software R&D.<br><br>
<span style="color:var(--text3)">산업용 모션 제어기 시장의 선두 주자 AXT(아진엑스텍)의 이사이며,<br>SW Group Manager로서 연구 개발을 담당합니다.</span>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section class="contact-section">
<div class="contact-card reveal">
<div class="contact-left">
<div class="contact-title">Contact & Inquiries</div>
<div class="contact-title-ko">문의 · 개선 제안</div>
</div>
<div>
<div class="contact-email">ark2010@naver.com</div>
<div class="contact-desc">
Bug reports and feature suggestions are welcome.<br>
<span class="ko">버그 제보와 기능 개선 제안을 환영합니다.</span>
</div>
</div>
</div>
</section>
<!-- THIRD-PARTY CREDITS -->
<section class="tools-section" id="credits">
<div class="section-divider reveal"><span class="section-label">Third-Party Credits · 외부 라이선스 고지</span></div>
<h2 class="tools-title reveal">Credits and notices.</h2>
<p class="tools-title-ko reveal">사용한 외부 구성 요소와 의무 고지.</p>
<table class="tools-table reveal">
<thead>
<tr>
<th>Component · 구성 요소</th>
<th>Notice · 고지</th>
</tr>
</thead>
<tbody>
<tr>
<td style="color:var(--text); font-size:11px;">FFmpeg<br><span style="color:var(--text3); font-size:10px;">Tools/ffmpeg.exe</span></td>
<td>Bundled as a separate Gyan.dev Windows essentials executable for audio conversion and analysis workflows. The included build reports GPL/version3 configuration, so FFmpeg copyright, GPL terms, source/build availability, and upstream notices must be preserved.<br><span style="color:var(--text3); font-size:10px;">오디오 변환/분석을 위한 별도 실행 파일로 포함됩니다. 포함 빌드는 GPL/version3 설정을 보고하므로 FFmpeg 저작권, GPL 조건, 소스/빌드 정보, 상위 고지를 유지해야 합니다.</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">Demucs / HTDemucs-6S<br><span style="color:var(--text3); font-size:10px;">Tools/demucs/htdemucs_6s.onnx</span></td>
<td>Local AI model asset for source-separation-assisted audio workflows. Preserve Demucs / Meta / Facebook Research attribution, the model artifact source listed in <code style="color:var(--accent); font-size:10px;">Tools/demucs/manifest.json</code>, and any applicable model artifact license notice when redistributing.<br><span style="color:var(--text3); font-size:10px;">음원 분리 보조 워크플로에 사용하는 로컬 AI 모델입니다. 재배포 시 Demucs / Meta / Facebook Research 출처, manifest의 모델 출처, 해당 모델 artifact 라이선스 고지를 유지해야 합니다.</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">ONNX Runtime<br><span style="color:var(--text3); font-size:10px;">onnxruntime.dll</span></td>
<td>Bundled for local ONNX inference under the Microsoft/contributor MIT license. Preserve the ONNX Runtime attribution and MIT license notice.<br><span style="color:var(--text3); font-size:10px;">로컬 ONNX 추론을 위해 포함됩니다. Microsoft 및 contributor 출처와 MIT 라이선스 고지를 유지해야 합니다.</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">GeneralUser GS SoundFonts<br><span style="color:var(--text3); font-size:10px;">SoundFonts/*.sf2</span></td>
<td>Bundled SoundFonts are third-party sound assets by S. Christian Collins under the GeneralUser GS license terms. Preserve attribution and license notice when redistributing the SoundFont files.<br><span style="color:var(--text3); font-size:10px;">번들 사운드폰트는 S. Christian Collins의 외부 사운드 자산입니다. 재배포 시 출처와 GeneralUser GS 라이선스 고지를 유지해야 합니다.</span></td>
</tr>
<tr>
<td style="color:var(--text); font-size:11px;">Other bundled components<br><span style="color:var(--text3); font-size:10px;">JUCE, FluidSynth, LAME, SDL3, libsndfile</span></td>
<td>See <code style="color:var(--accent); font-size:10px;">Credits.txt</code> and <code style="color:var(--accent); font-size:10px;">README.md</code> for the full third-party component list. These components are owned by their respective authors and are licensed separately from ArkComposer.<br><span style="color:var(--text3); font-size:10px;">전체 외부 구성 요소 목록은 Credits.txt와 README.md를 확인하세요. 각 구성 요소는 원 저작자에게 권리가 있으며 ArkComposer와 별도 라이선스가 적용됩니다.</span></td>
</tr>
</tbody>
</table>
</section>
<!-- DOWNLOAD -->
<section class="download-section" id="download">
<div class="download-inner reveal">
<h2 class="download-title">Download</h2>
<p class="download-title-ko">무료 다운로드</p>
<p class="download-desc" style="margin-bottom:4px;">Latest public release for Windows 10 / 11 · Version 1.2.5.12</p>
<p class="download-desc">Windows 10 / 11 (64-bit) · Free for all use</p>
<p class="download-desc-ko">
개인 및 상업적 목적 모두 무료 사용 가능<br>
Music created with ArkComposer may be used for any purpose without restriction.
</p>
<a href="https://github.com/arkark2010arkark/ArkComposer/releases/latest" class="btn-primary" target="_blank">
↓ Download Latest Release
</a>
<p class="download-meta">Redistribution of ArkComposer itself is not permitted · 재배포 불가 · Source code is proprietary</p>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-logo">ArkComposer</div>
<ul class="footer-links">
<li><a href="https://github.com/arkark2010arkark/ArkComposer" target="_blank">GitHub</a></li>
<li><a href="https://github.com/arkark2010arkark/ArkComposer/releases" target="_blank">Releases</a></li>
<li><a href="mailto:ark2010@naver.com">Contact</a></li>
<li><a href="https://www.ajinextek.com" target="_blank">AXT</a></li>
</ul>
<p class="footer-copy">© 2026 Park Byoung Gu (박병구)</p>
</footer>
<script>
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry, i) => {
if (entry.isIntersecting) {
setTimeout(() => entry.target.classList.add('visible'), i * 60);
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
reveals.forEach(el => observer.observe(el));
</script>
</body>
</html>