openfree commited on
Commit
395a648
Β·
verified Β·
1 Parent(s): d62ff3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +84 -85
app.py CHANGED
@@ -561,7 +561,42 @@ def generate_section_video(prompt, preset, section_number=1, base_seed=171198, p
561
  seed=section_seed, # μ„Ήμ…˜λ³„ 고유 SEED μ‚¬μš©
562
  progress=progress
563
  )
 
 
 
 
 
 
 
 
 
 
 
 
564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  # Gradio Interface Definition
566
  with gr.Blocks(theme=gr.themes.Soft()) as iface:
567
  with gr.Tabs():
@@ -667,7 +702,8 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
667
  with gr.Column():
668
  img2vid_output = gr.Video(label="μƒμ„±λœ λΉ„λ””μ˜€")
669
 
670
- # Scenario to Video Tab (New)
 
671
  with gr.TabItem("μ‹œλ‚˜λ¦¬μ˜€λ‘œ λΉ„λ””μ˜€ λ§Œλ“€κΈ°(숏폼)"):
672
  with gr.Row():
673
  with gr.Column(scale=1):
@@ -691,7 +727,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
691
  label="1. λ°°κ²½ 및 ν•„μš”μ„±",
692
  lines=4
693
  )
694
- section1_generate = gr.Button("생성")
 
 
695
  section1_video = gr.Video(label="μ„Ήμ…˜ 1 μ˜μƒ")
696
 
697
  # μ„Ήμ…˜ 2
@@ -700,7 +738,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
700
  label="2. 문제 제기 및 ν₯λ―Έ 유발",
701
  lines=4
702
  )
703
- section2_generate = gr.Button("생성")
 
 
704
  section2_video = gr.Video(label="μ„Ήμ…˜ 2 μ˜μƒ")
705
 
706
  with gr.Row():
@@ -710,7 +750,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
710
  label="3. ν•΄κ²°μ±… μ œμ‹œ",
711
  lines=4
712
  )
713
- section3_generate = gr.Button("생성")
 
 
714
  section3_video = gr.Video(label="μ„Ήμ…˜ 3 μ˜μƒ")
715
 
716
  # μ„Ήμ…˜ 4
@@ -719,7 +761,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
719
  label="4. λ³Έλ‘ ",
720
  lines=4
721
  )
722
- section4_generate = gr.Button("생성")
 
 
723
  section4_video = gr.Video(label="μ„Ήμ…˜ 4 μ˜μƒ")
724
 
725
  with gr.Row():
@@ -729,117 +773,72 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
729
  label="5. κ²°λ‘  및 κ°•μ‘°",
730
  lines=4
731
  )
732
- section5_generate = gr.Button("생성")
 
 
733
  section5_video = gr.Video(label="μ„Ήμ…˜ 5 μ˜μƒ")
734
 
735
- # Event handlers
736
- txt2vid_preset.change(
737
- fn=preset_changed,
738
- inputs=[txt2vid_preset],
739
- outputs=[
740
- txt2vid_current_height,
741
- txt2vid_current_width,
742
- txt2vid_current_num_frames,
743
- *txt2vid_advanced[3:]
744
- ]
745
- )
746
-
747
- txt2vid_enhance_toggle.change(
748
- fn=update_prompt_t2v,
749
- inputs=[txt2vid_prompt, txt2vid_enhance_toggle],
750
- outputs=txt2vid_prompt
751
- )
752
 
753
- txt2vid_generate.click(
754
- fn=generate_video_from_text,
755
- inputs=[
756
- txt2vid_prompt,
757
- txt2vid_enhance_toggle,
758
- txt2vid_negative_prompt,
759
- txt2vid_frame_rate,
760
- *txt2vid_advanced[:3],
761
- txt2vid_current_height,
762
- txt2vid_current_width,
763
- txt2vid_current_num_frames,
764
- ],
765
- outputs=txt2vid_output,
766
- concurrency_limit=1,
767
- concurrency_id="generate_video",
768
- queue=True,
769
  )
770
-
771
- img2vid_preset.change(
772
- fn=preset_changed,
773
- inputs=[img2vid_preset],
774
- outputs=[
775
- img2vid_current_height,
776
- img2vid_current_width,
777
- img2vid_current_num_frames,
778
- *img2vid_advanced[3:]
779
- ]
780
  )
781
-
782
- img2vid_enhance_toggle.change(
783
- fn=update_prompt_i2v,
784
- inputs=[img2vid_prompt, img2vid_enhance_toggle],
785
- outputs=img2vid_prompt
786
  )
787
-
788
- img2vid_generate.click(
789
- fn=generate_video_from_image,
790
- inputs=[
791
- img2vid_image,
792
- img2vid_prompt,
793
- img2vid_enhance_toggle,
794
- img2vid_negative_prompt,
795
- img2vid_frame_rate,
796
- *img2vid_advanced[:3],
797
- img2vid_current_height,
798
- img2vid_current_width,
799
- img2vid_current_num_frames,
800
- ],
801
- outputs=img2vid_output,
802
- concurrency_limit=1,
803
- concurrency_id="generate_video",
804
- queue=True,
805
  )
806
-
807
- # Scenario tab event handlers
808
- analyze_btn.click(
809
- fn=analyze_scenario,
810
  inputs=[scenario_input],
811
- outputs=[
812
- section1_prompt, section2_prompt, section3_prompt,
813
- section4_prompt, section5_prompt
814
- ]
815
  )
816
 
 
817
  section1_generate.click(
818
- fn=generate_section_video,
819
  inputs=[section1_prompt, scenario_preset],
820
  outputs=section1_video
821
  )
822
 
823
  section2_generate.click(
824
- fn=generate_section_video,
825
  inputs=[section2_prompt, scenario_preset],
826
  outputs=section2_video
827
  )
828
 
829
  section3_generate.click(
830
- fn=generate_section_video,
831
  inputs=[section3_prompt, scenario_preset],
832
  outputs=section3_video
833
  )
834
 
835
  section4_generate.click(
836
- fn=generate_section_video,
837
  inputs=[section4_prompt, scenario_preset],
838
  outputs=section4_video
839
  )
840
 
841
  section5_generate.click(
842
- fn=generate_section_video,
843
  inputs=[section5_prompt, scenario_preset],
844
  outputs=section5_video
845
  )
 
561
  seed=section_seed, # μ„Ήμ…˜λ³„ 고유 SEED μ‚¬μš©
562
  progress=progress
563
  )
564
+
565
+
566
+ # κ°œλ³„ μ„Ήμ…˜ ν”„λ‘¬ν”„νŠΈ 생성 ν•¨μˆ˜ μΆ”κ°€
567
+ def generate_single_section_prompt(scenario, section_number):
568
+ """κ°œλ³„ μ„Ήμ…˜μ— λŒ€ν•œ ν”„λ‘¬ν”„νŠΈ 생성"""
569
+ section_descriptions = {
570
+ 1: "λ°°κ²½ 및 ν•„μš”μ„±: 주제의 μ „λ°˜μ μΈ λΆ„μœ„κΈ°λ₯Ό ν‘œν˜„ν•˜λŠ” λ°°κ²½ 씬",
571
+ 2: "문제 제기: κΈ΄μž₯κ°μ΄λ‚˜ κ°ˆλ“±μ„ μ•”μ‹œν•˜λŠ” λΆ„μœ„κΈ° μžˆλŠ” λ°°κ²½",
572
+ 3: "ν•΄κ²°μ±… μ œμ‹œ: 희망적이고 밝은 ν†€μ˜ λ°°κ²½ μ „ν™˜",
573
+ 4: "λ³Έλ‘ : μ•ˆμ •κ° 있고 신뒰도λ₯Ό λ†’μ΄λŠ” λ°°κ²½",
574
+ 5: "κ²°λ‘ : μž„νŒ©νŠΈ μžˆλŠ” 마무리λ₯Ό μœ„ν•œ 역동적인 λ°°κ²½"
575
+ }
576
 
577
+ messages = [
578
+ {"role": "system", "content": system_prompt_scenario},
579
+ {"role": "user", "content": f"""
580
+ λ‹€μŒ 슀크립트의 {section_number}번째 μ„Ήμ…˜({section_descriptions[section_number]})에 λŒ€ν•œ
581
+ λ°°κ²½ μ˜μƒ ν”„λ‘¬ν”„νŠΈλ§Œμ„ μƒμ„±ν•΄μ£Όμ„Έμš”:
582
+
583
+ {scenario}
584
+
585
+ 직접적인 μ œν’ˆ λ¬˜μ‚¬λŠ” ν”Όν•˜κ³ , 슀크립트의 감성을 ν‘œν˜„ν•˜λŠ” λ°°κ²½ μ˜μƒμ— μ§‘μ€‘ν•΄μ£Όμ„Έμš”."""}
586
+ ]
587
+
588
+ try:
589
+ response = client.chat.completions.create(
590
+ model="gpt-4-1106-preview",
591
+ messages=messages,
592
+ max_tokens=500,
593
+ )
594
+ return response.choices[0].message.content.strip()
595
+ except Exception as e:
596
+ print(f"Error during prompt generation: {e}")
597
+ return "Error occurred during prompt generation"
598
+
599
+
600
  # Gradio Interface Definition
601
  with gr.Blocks(theme=gr.themes.Soft()) as iface:
602
  with gr.Tabs():
 
702
  with gr.Column():
703
  img2vid_output = gr.Video(label="μƒμ„±λœ λΉ„λ””μ˜€")
704
 
705
+
706
+ # Scenario to Video Tab (Modified)
707
  with gr.TabItem("μ‹œλ‚˜λ¦¬μ˜€λ‘œ λΉ„λ””μ˜€ λ§Œλ“€κΈ°(숏폼)"):
708
  with gr.Row():
709
  with gr.Column(scale=1):
 
727
  label="1. λ°°κ²½ 및 ν•„μš”μ„±",
728
  lines=4
729
  )
730
+ with gr.Row():
731
+ section1_regenerate = gr.Button("πŸ”„ ν”„λ‘¬ν”„νŠΈ μƒˆλ‘œ 생성")
732
+ section1_generate = gr.Button("생성")
733
  section1_video = gr.Video(label="μ„Ήμ…˜ 1 μ˜μƒ")
734
 
735
  # μ„Ήμ…˜ 2
 
738
  label="2. 문제 제기 및 ν₯λ―Έ 유발",
739
  lines=4
740
  )
741
+ with gr.Row():
742
+ section2_regenerate = gr.Button("πŸ”„ ν”„λ‘¬ν”„νŠΈ μƒˆλ‘œ 생성")
743
+ section2_generate = gr.Button("생성")
744
  section2_video = gr.Video(label="μ„Ήμ…˜ 2 μ˜μƒ")
745
 
746
  with gr.Row():
 
750
  label="3. ν•΄κ²°μ±… μ œμ‹œ",
751
  lines=4
752
  )
753
+ with gr.Row():
754
+ section3_regenerate = gr.Button("πŸ”„ ν”„λ‘¬ν”„νŠΈ μƒˆλ‘œ 생성")
755
+ section3_generate = gr.Button("생성")
756
  section3_video = gr.Video(label="μ„Ήμ…˜ 3 μ˜μƒ")
757
 
758
  # μ„Ήμ…˜ 4
 
761
  label="4. λ³Έλ‘ ",
762
  lines=4
763
  )
764
+ with gr.Row():
765
+ section4_regenerate = gr.Button("πŸ”„ ν”„λ‘¬ν”„νŠΈ μƒˆλ‘œ 생성")
766
+ section4_generate = gr.Button("생성")
767
  section4_video = gr.Video(label="μ„Ήμ…˜ 4 μ˜μƒ")
768
 
769
  with gr.Row():
 
773
  label="5. κ²°λ‘  및 κ°•μ‘°",
774
  lines=4
775
  )
776
+ with gr.Row():
777
+ section5_regenerate = gr.Button("πŸ”„ ν”„λ‘¬ν”„νŠΈ μƒˆλ‘œ 생성")
778
+ section5_generate = gr.Button("생성")
779
  section5_video = gr.Video(label="μ„Ήμ…˜ 5 μ˜μƒ")
780
 
781
+ # Event handlers (κΈ°μ‘΄ ν•Έλ“€λŸ¬λ“€)
782
+ [이전 이벀트 ν•Έλ“€λŸ¬λ“€κ³Ό 동일...]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
 
784
+ # μƒˆλ‘œμš΄ 이벀트 ν•Έλ“€λŸ¬ μΆ”κ°€
785
+ section1_regenerate.click(
786
+ fn=lambda x: generate_single_section_prompt(x, 1),
787
+ inputs=[scenario_input],
788
+ outputs=section1_prompt
 
 
 
 
 
 
 
 
 
 
 
789
  )
790
+
791
+ section2_regenerate.click(
792
+ fn=lambda x: generate_single_section_prompt(x, 2),
793
+ inputs=[scenario_input],
794
+ outputs=section2_prompt
 
 
 
 
 
795
  )
796
+
797
+ section3_regenerate.click(
798
+ fn=lambda x: generate_single_section_prompt(x, 3),
799
+ inputs=[scenario_input],
800
+ outputs=section3_prompt
801
  )
802
+
803
+ section4_regenerate.click(
804
+ fn=lambda x: generate_single_section_prompt(x, 4),
805
+ inputs=[scenario_input],
806
+ outputs=section4_prompt
 
 
 
 
 
 
 
 
 
 
 
 
 
807
  )
808
+
809
+ section5_regenerate.click(
810
+ fn=lambda x: generate_single_section_prompt(x, 5),
 
811
  inputs=[scenario_input],
812
+ outputs=section5_prompt
 
 
 
813
  )
814
 
815
+ # κΈ°μ‘΄ μ„Ήμ…˜ 생성 이벀트 ν•Έλ“€λŸ¬λ“€
816
  section1_generate.click(
817
+ fn=lambda p, pr: generate_section_video(p, pr, 1),
818
  inputs=[section1_prompt, scenario_preset],
819
  outputs=section1_video
820
  )
821
 
822
  section2_generate.click(
823
+ fn=lambda p, pr: generate_section_video(p, pr, 2),
824
  inputs=[section2_prompt, scenario_preset],
825
  outputs=section2_video
826
  )
827
 
828
  section3_generate.click(
829
+ fn=lambda p, pr: generate_section_video(p, pr, 3),
830
  inputs=[section3_prompt, scenario_preset],
831
  outputs=section3_video
832
  )
833
 
834
  section4_generate.click(
835
+ fn=lambda p, pr: generate_section_video(p, pr, 4),
836
  inputs=[section4_prompt, scenario_preset],
837
  outputs=section4_video
838
  )
839
 
840
  section5_generate.click(
841
+ fn=lambda p, pr: generate_section_video(p, pr, 5),
842
  inputs=[section5_prompt, scenario_preset],
843
  outputs=section5_video
844
  )