ginipick commited on
Commit
22f0ac1
Β·
verified Β·
1 Parent(s): 6a9adba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +146 -86
app.py CHANGED
@@ -423,50 +423,93 @@ def optimize_model_selection(lyrics, genre):
423
  return model_path, model_config[model_path], params
424
 
425
  def main():
426
- with gr.Blocks() as demo:
427
- with gr.Column():
428
- gr.Markdown("# Open SUNO: Full-Song Generation (Multi-Language Support)")
429
-
430
- with gr.Row():
431
- with gr.Column():
432
- genre_txt = gr.Textbox(
433
- label="Genre",
434
- placeholder="Enter music genre and style descriptions..."
435
- )
436
- lyrics_txt = gr.Textbox(
437
- label="Lyrics (Supports English, Korean, Japanese, Chinese)",
438
- placeholder="Enter song lyrics with [verse], [chorus], [bridge] tags...",
439
- lines=10
440
- )
441
-
442
- with gr.Column():
443
- num_segments = gr.Number(
444
- label="Number of Song Segments (Auto-adjusted based on lyrics)",
445
- value=2,
446
- minimum=1,
447
- maximum=4,
448
- step=1,
449
- interactive=False
450
- )
451
- max_new_tokens = gr.Slider(
452
- label="Max New Tokens (Auto-adjusted based on lyrics)",
453
- minimum=500,
454
- maximum=32000,
455
- step=500,
456
- value=4000,
457
- interactive=False
458
- )
459
  with gr.Row():
460
- duration_info = gr.Label(label="Estimated Duration")
461
- sections_info = gr.Label(label="Section Information")
462
- submit_btn = gr.Button("Generate Music", variant="primary")
463
- music_out = gr.Audio(label="Generated Audio")
464
-
465
- gr.Examples(
466
- examples=[
467
- [
468
- "female blues airy vocal bright vocal piano sad romantic guitar jazz",
469
- """[verse]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
470
  In the quiet of the evening, shadows start to fall
471
  Whispers of the night wind echo through the hall
472
  Lost within the silence, I hear your gentle voice
@@ -474,41 +517,50 @@ Guiding me back homeward, making my heart rejoice
474
 
475
  [chorus]
476
  Don't let this moment fade, hold me close tonight
477
- With you here beside me, everything's alright
478
- Can't imagine life alone, don't want to let you go
479
- Stay with me forever, let our love just flow
480
-
 
481
  [verse]
482
- In the quiet of the evening, shadows start to fall
483
- Whispers of the night wind echo through the hall
484
- Lost within the silence, I hear your gentle voice
485
- Guiding me back homeward, making my heart rejoice
486
-
487
- [chorus]
488
- Don't let this moment fade, hold me close tonight
489
- With you here beside me, everything's alright
490
- Can't imagine life alone, don't want to let you go
491
- Stay with me forever, let our love just flow"""
492
- ],
493
- [
494
- "K-pop bright energetic synth dance electronic",
495
- """[verse]
496
  μ–Έμ  κ°€ λ§ˆμ£Όν•œ λˆˆλΉ› μ†μ—μ„œ
497
-
498
- [chorus]
499
- λ‹€μ‹œ ν•œ 번 λ‚΄κ²Œ λ§ν•΄μ€˜
500
-
501
- [verse]
502
  μ–΄λ‘μš΄ 밀을 지날 λ•Œλ§ˆλ‹€
503
 
504
  [chorus]
505
  λ‹€μ‹œ ν•œ 번 λ‚΄κ²Œ λ§ν•΄μ€˜
506
  """
507
- ]
508
- ],
509
- inputs=[genre_txt, lyrics_txt]
510
- )
511
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  initialize_system()
513
 
514
  def update_info(lyrics):
@@ -518,31 +570,39 @@ Stay with me forever, let our love just flow"""
518
  duration = params['estimated_duration']
519
  sections = params['sections']
520
  return (
521
- f"Estimated duration: {duration:.1f} seconds",
522
- f"Verses: {sections['verse']}, Chorus: {sections['chorus']} (Expected full length including chorus)"
523
  )
524
 
 
 
 
 
525
  lyrics_txt.change(
526
  fn=update_info,
527
  inputs=[lyrics_txt],
528
  outputs=[duration_info, sections_info]
529
  )
530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
  submit_btn.click(
532
- fn=infer,
533
  inputs=[genre_txt, lyrics_txt, num_segments, max_new_tokens],
534
  outputs=[music_out]
535
  )
536
 
537
- return demo
538
-
539
- if __name__ == "__main__":
540
- demo = main()
541
- demo.queue(max_size=20).launch(
542
- server_name="0.0.0.0",
543
- server_port=7860,
544
- share=True,
545
- show_api=True,
546
- show_error=True,
547
- max_threads=8
548
- )
 
423
  return model_path, model_config[model_path], params
424
 
425
  def main():
426
+ with gr.Blocks(theme=gr.themes.Soft(
427
+ primary_hue="indigo",
428
+ secondary_hue="purple",
429
+ neutral_hue="slate",
430
+ font=["Arial", "sans-serif"]
431
+ )) as demo:
432
+ with gr.Column(elem_id="main-container"):
433
+ # 헀더 μ„Ήμ…˜
434
+ with gr.Row(elem_id="header"):
435
+ gr.Markdown(
436
+ """
437
+ # 🎡 Open SUNO: AI Music Generator
438
+ ### Create complete songs from your lyrics in multiple languages
439
+ """,
440
+ elem_id="title"
441
+ )
442
+
443
+ # 메인 컨텐츠λ₯Ό νƒ­μœΌλ‘œ ꡬ성
444
+ with gr.Tabs() as tabs:
445
+ # 생성 νƒ­
446
+ with gr.TabItem("✨ Create Music", id="create"):
 
 
 
 
 
 
 
 
 
 
 
 
447
  with gr.Row():
448
+ # μž…λ ₯ μ„Ήμ…˜
449
+ with gr.Column(scale=1):
450
+ genre_txt = gr.Textbox(
451
+ label="🎸 Music Genre & Style",
452
+ placeholder="e.g., K-pop bright energetic synth dance electronic...",
453
+ elem_id="genre-input"
454
+ )
455
+ lyrics_txt = gr.Textbox(
456
+ label="πŸ“ Lyrics",
457
+ placeholder="Enter lyrics with section tags: [verse], [chorus], [bridge]...",
458
+ lines=10,
459
+ elem_id="lyrics-input"
460
+ )
461
+
462
+ # 정보 ν‘œμ‹œ μ„Ήμ…˜
463
+ with gr.Row():
464
+ with gr.Column(scale=1):
465
+ duration_info = gr.Label(
466
+ label="⏱️ Estimated Duration",
467
+ elem_id="duration-info"
468
+ )
469
+ with gr.Column(scale=1):
470
+ sections_info = gr.Label(
471
+ label="πŸ“Š Section Analysis",
472
+ elem_id="sections-info"
473
+ )
474
+
475
+ # 생성 λ²„νŠΌ
476
+ submit_btn = gr.Button(
477
+ "🎼 Generate Music",
478
+ variant="primary",
479
+ elem_id="generate-btn"
480
+ )
481
+
482
+ # 좜λ ₯ μ„Ήμ…˜
483
+ with gr.Column(scale=1):
484
+ music_out = gr.Audio(
485
+ label="🎡 Generated Music",
486
+ elem_id="music-output"
487
+ )
488
+
489
+ # 진행 μƒνƒœ ν‘œμ‹œ
490
+ progress = gr.Textbox(
491
+ label="Generation Status",
492
+ interactive=False,
493
+ elem_id="progress-status"
494
+ )
495
+
496
+ # νžˆμŠ€ν† λ¦¬ νƒ­
497
+ with gr.TabItem("πŸ“š History", id="history"):
498
+ history_list = gr.Dataset(
499
+ components=[gr.Audio, gr.Textbox, gr.Textbox],
500
+ headers=["Generated Music", "Genre", "Lyrics"],
501
+ samples=[],
502
+ elem_id="history-list"
503
+ )
504
+ gr.Markdown("*Click on any entry to play the music*")
505
+
506
+ # 예제 μ„Ήμ…˜
507
+ with gr.Accordion("πŸ“– Examples", open=False):
508
+ gr.Examples(
509
+ examples=[
510
+ [
511
+ "female blues airy vocal bright vocal piano sad romantic guitar jazz",
512
+ """[verse]
513
  In the quiet of the evening, shadows start to fall
514
  Whispers of the night wind echo through the hall
515
  Lost within the silence, I hear your gentle voice
 
517
 
518
  [chorus]
519
  Don't let this moment fade, hold me close tonight
520
+ """
521
+ ],
522
+ [
523
+ "K-pop bright energetic synth dance electronic",
524
+ """
525
  [verse]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  μ–Έμ  κ°€ λ§ˆμ£Όν•œ λˆˆλΉ› μ†μ—μ„œ
 
 
 
 
 
527
  μ–΄λ‘μš΄ 밀을 지날 λ•Œλ§ˆλ‹€
528
 
529
  [chorus]
530
  λ‹€μ‹œ ν•œ 번 λ‚΄κ²Œ λ§ν•΄μ€˜
531
  """
532
+ ]
533
+ ],
534
+ inputs=[genre_txt, lyrics_txt]
535
+ )
536
+
537
+ # 도움말 및 μ„€λͺ… μ„Ήμ…˜
538
+ with gr.Accordion("ℹ️ Help & Information", open=False):
539
+ gr.Markdown(
540
+ """
541
+ ### 🎡 How to Use
542
+ 1. **Enter Genre & Style**: Describe the musical style you want (e.g., "K-pop", "Jazz", "Rock")
543
+ 2. **Input Lyrics**: Write your lyrics using section tags:
544
+ - Use `[verse]` for verses
545
+ - Use `[chorus]` for choruses
546
+ - Use `[bridge]` for bridges
547
+ 3. **Generate**: Click the Generate button and wait for your music!
548
+
549
+ ### 🌏 Supported Languages
550
+ - English
551
+ - Korean (ν•œκ΅­μ–΄)
552
+ - Japanese (ζ—₯本θͺž)
553
+ - Chinese (δΈ­ζ–‡)
554
+
555
+ ### ⚑ Tips
556
+ - Be specific with your genre descriptions
557
+ - Include emotion and instrument preferences
558
+ - Make sure to properly tag your lyrics sections
559
+ - For best results, include both verse and chorus sections
560
+ """
561
+ )
562
+
563
+ # μ‹œμŠ€ν…œ μ΄ˆκΈ°ν™”
564
  initialize_system()
565
 
566
  def update_info(lyrics):
 
570
  duration = params['estimated_duration']
571
  sections = params['sections']
572
  return (
573
+ f"⏱️ Estimated: {duration:.1f} seconds",
574
+ f"πŸ“Š Verses: {sections['verse']}, Chorus: {sections['chorus']}"
575
  )
576
 
577
+ def update_history(audio, genre, lyrics):
578
+ return history_list.update(samples=[[audio, genre, lyrics]] + history_list.samples)
579
+
580
+ # 이벀트 ν•Έλ“€λŸ¬
581
  lyrics_txt.change(
582
  fn=update_info,
583
  inputs=[lyrics_txt],
584
  outputs=[duration_info, sections_info]
585
  )
586
 
587
+ def generate_with_progress(genre, lyrics, num_segments, max_tokens):
588
+ progress.update(value="🎡 Starting generation...")
589
+ try:
590
+ result = infer(genre, lyrics, num_segments, max_tokens)
591
+ if result:
592
+ progress.update(value="βœ… Generation complete!")
593
+ update_history(result, genre, lyrics)
594
+ return result
595
+ else:
596
+ progress.update(value="❌ Generation failed")
597
+ return None
598
+ except Exception as e:
599
+ progress.update(value=f"❌ Error: {str(e)}")
600
+ return None
601
+
602
  submit_btn.click(
603
+ fn=generate_with_progress,
604
  inputs=[genre_txt, lyrics_txt, num_segments, max_new_tokens],
605
  outputs=[music_out]
606
  )
607
 
608
+ return demo