AIRider commited on
Commit
26c0f5c
ยท
verified ยท
1 Parent(s): 7b2bf17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -31
app.py CHANGED
@@ -37,37 +37,16 @@ def get_youtube_script(url):
37
  data = parsed_result["data"][0]
38
  title = data.get("title", "์ œ๋ชฉ ์—†์Œ")
39
  transcription_text = data.get("transcriptionAsText", "")
40
- sections = data.get("sections", [])
41
 
42
  if not transcription_text:
43
  raise ValueError("์ถ”์ถœ๋œ ์Šคํฌ๋ฆฝํŠธ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.")
44
 
45
  logging.info("์Šคํฌ๋ฆฝํŠธ ์ถ”์ถœ ์™„๋ฃŒ")
46
- return title, transcription_text, sections
47
  except Exception as e:
48
  logging.exception("์Šคํฌ๋ฆฝํŠธ ์ถ”์ถœ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ")
49
  raise
50
 
51
- def format_time(seconds):
52
- minutes, seconds = divmod(seconds, 60)
53
- hours, minutes = divmod(minutes, 60)
54
- return f"{int(hours):02d}:{int(minutes):02d}:{int(seconds):02d}"
55
-
56
- def generate_timeline_summary(sections):
57
- timeline_items = []
58
- for section in sections:
59
- start_time = format_time(section['start_time'])
60
- text = section['text']
61
- timeline_items.append(f"<p><strong>{start_time}</strong>: {text}</p>")
62
-
63
- timeline_html = "\n".join(timeline_items)
64
- return f"""
65
- <h3>ํƒ€์ž„๋ผ์ธ ์š”์•ฝ:</h3>
66
- <div style="white-space: pre-wrap; max-height: 400px; overflow-y: auto; border: 1px solid #ccc; padding: 10px;">
67
- {timeline_html}
68
- </div>
69
- """
70
-
71
  def call_api(prompt, max_tokens, temperature, top_p):
72
  try:
73
  response = openai.ChatCompletion.create(
@@ -111,22 +90,21 @@ def analyze(url, cache):
111
  try:
112
  if url == cache["url"]:
113
  logging.info(f"์บ์‹œ๋œ ๋ฐ์ดํ„ฐ ์‚ฌ์šฉ: URL = {url}")
114
- title, script, sections = cache["title"], cache["script"], cache["sections"]
115
  else:
116
  logging.info(f"์ƒˆ๋กœ์šด ๋ฐ์ดํ„ฐ ์ถ”์ถœ ์‹œ์ž‘: URL = {url}")
117
- title, script, sections = get_youtube_script(url)
118
- cache = {"url": url, "title": title, "script": script, "sections": sections}
119
 
120
  script_html = display_script(title, script)
121
- timeline_html = generate_timeline_summary(sections)
122
  summary_html = summarize_text(script)
123
 
124
  logging.info("๋ถ„์„ ์™„๋ฃŒ")
125
- return script_html, timeline_html, summary_html, cache
126
  except Exception as e:
127
  error_msg = f"์ฒ˜๋ฆฌ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"
128
  logging.exception(error_msg)
129
- return error_msg, "", "", cache
130
 
131
  # Gradio ์ธํ„ฐํŽ˜์ด์Šค
132
  with gr.Blocks() as demo:
@@ -134,14 +112,13 @@ with gr.Blocks() as demo:
134
  youtube_url_input = gr.Textbox(label="YouTube URL ์ž…๋ ฅ")
135
  analyze_button = gr.Button("๋ถ„์„ํ•˜๊ธฐ")
136
  script_output = gr.HTML(label="์Šคํฌ๋ฆฝํŠธ")
137
- timeline_output = gr.HTML(label="ํƒ€์ž„๋ผ์ธ ์š”์•ฝ")
138
  summary_output = gr.HTML(label="์ „์ฒด ์š”์•ฝ")
139
- cached_data = gr.State({"url": "", "title": "", "script": "", "sections": []})
140
 
141
  analyze_button.click(
142
  analyze,
143
  inputs=[youtube_url_input, cached_data],
144
- outputs=[script_output, timeline_output, summary_output, cached_data]
145
  )
146
 
147
  if __name__ == "__main__":
 
37
  data = parsed_result["data"][0]
38
  title = data.get("title", "์ œ๋ชฉ ์—†์Œ")
39
  transcription_text = data.get("transcriptionAsText", "")
 
40
 
41
  if not transcription_text:
42
  raise ValueError("์ถ”์ถœ๋œ ์Šคํฌ๋ฆฝํŠธ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.")
43
 
44
  logging.info("์Šคํฌ๋ฆฝํŠธ ์ถ”์ถœ ์™„๋ฃŒ")
45
+ return title, transcription_text
46
  except Exception as e:
47
  logging.exception("์Šคํฌ๋ฆฝํŠธ ์ถ”์ถœ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ")
48
  raise
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  def call_api(prompt, max_tokens, temperature, top_p):
51
  try:
52
  response = openai.ChatCompletion.create(
 
90
  try:
91
  if url == cache["url"]:
92
  logging.info(f"์บ์‹œ๋œ ๋ฐ์ดํ„ฐ ์‚ฌ์šฉ: URL = {url}")
93
+ title, script = cache["title"], cache["script"]
94
  else:
95
  logging.info(f"์ƒˆ๋กœ์šด ๋ฐ์ดํ„ฐ ์ถ”์ถœ ์‹œ์ž‘: URL = {url}")
96
+ title, script = get_youtube_script(url)
97
+ cache = {"url": url, "title": title, "script": script}
98
 
99
  script_html = display_script(title, script)
 
100
  summary_html = summarize_text(script)
101
 
102
  logging.info("๋ถ„์„ ์™„๋ฃŒ")
103
+ return script_html, summary_html, cache
104
  except Exception as e:
105
  error_msg = f"์ฒ˜๋ฆฌ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"
106
  logging.exception(error_msg)
107
+ return error_msg, "", cache
108
 
109
  # Gradio ์ธํ„ฐํŽ˜์ด์Šค
110
  with gr.Blocks() as demo:
 
112
  youtube_url_input = gr.Textbox(label="YouTube URL ์ž…๋ ฅ")
113
  analyze_button = gr.Button("๋ถ„์„ํ•˜๊ธฐ")
114
  script_output = gr.HTML(label="์Šคํฌ๋ฆฝํŠธ")
 
115
  summary_output = gr.HTML(label="์ „์ฒด ์š”์•ฝ")
116
+ cached_data = gr.State({"url": "", "title": "", "script": ""})
117
 
118
  analyze_button.click(
119
  analyze,
120
  inputs=[youtube_url_input, cached_data],
121
+ outputs=[script_output, summary_output, cached_data]
122
  )
123
 
124
  if __name__ == "__main__":