seawolf2357 commited on
Commit
f78f277
ยท
verified ยท
1 Parent(s): 78392bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -17
app.py CHANGED
@@ -1,6 +1,12 @@
1
  import requests
2
  import gradio as gr
3
- import os
 
 
 
 
 
 
4
 
5
  # Pexels API ํ‚ค๋ฅผ ์—ฌ๊ธฐ์— ์ž…๋ ฅํ•˜์„ธ์š”
6
  API_KEY = os.getenv('API_KEY')
@@ -8,35 +14,33 @@ API_URL = 'https://api.pexels.com/v1/search'
8
 
9
  def search_images(keyword):
10
  headers = {'Authorization': API_KEY}
11
- params = {'query': keyword, 'per_page': 8} # per_page ๊ฐ’์„ 8๋กœ ์„ค์ •ํ•˜์—ฌ 8๊ฐœ์˜ ์ด๋ฏธ์ง€๋ฅผ ๊ฒ€์ƒ‰
12
  response = requests.get(API_URL, headers=headers, params=params)
13
 
14
  if response.status_code == 200 and response.json()['photos']:
15
  photos = response.json()['photos']
16
- result_html = ""
17
  for photo in photos:
18
  image_url = photo['src']['original']
19
- photographer = photo['photographer']
20
- photographer_url = photo['photographer_url']
21
- photo_url = photo['url']
22
-
23
- # ๊ฐ ์ด๋ฏธ์ง€์™€ ํฌ๋ ˆ๋”ง์„ HTML ํ˜•์‹์œผ๋กœ ์ถ”๊ฐ€
24
- result_html += f"""
25
- <div style='margin-bottom: 20px;'>
26
- <img src='{image_url}' width='100%' />
27
- <p>This <a href='{photo_url}'>Photo</a> was taken by <a href='{photographer_url}'>{photographer}</a> on <a href='https://www.pexels.com'>Pexels</a>.</p>
28
- </div>
29
- """
30
- return result_html
31
  else:
32
  return "๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค."
33
 
34
  interface = gr.Interface(
35
  fn=search_images,
36
  inputs=gr.Textbox(lines=2, placeholder="๊ฒ€์ƒ‰ํ•  ์ด๋ฏธ์ง€ ํ‚ค์›Œ๋“œ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”"),
37
- outputs=gr.HTML(label="๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ"),
38
  title="Pexels ์ด๋ฏธ์ง€ ๊ฒ€์ƒ‰๊ธฐ",
39
- description="Pexels์—์„œ ํ‚ค์›Œ๋“œ์— ๋งž๋Š” ์ด๋ฏธ์ง€๋ฅผ ๊ฒ€์ƒ‰ํ•˜๊ณ , ํ•ด๋‹น ์ด๋ฏธ์ง€์˜ ์ถœ์ฒ˜์™€ ์ž‘๊ฐ€์— ๋Œ€ํ•œ ์ •๋ณด๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค."
40
  )
41
 
42
  if __name__ == "__main__":
 
1
  import requests
2
  import gradio as gr
3
+ import os
4
+ import imageio
5
+ import numpy as np
6
+ from PIL import Image
7
+ import requests
8
+ from io import BytesIO
9
+ import tempfile
10
 
11
  # Pexels API ํ‚ค๋ฅผ ์—ฌ๊ธฐ์— ์ž…๋ ฅํ•˜์„ธ์š”
12
  API_KEY = os.getenv('API_KEY')
 
14
 
15
  def search_images(keyword):
16
  headers = {'Authorization': API_KEY}
17
+ params = {'query': keyword, 'per_page': 5} # per_page ๊ฐ’์„ 5๋กœ ์„ค์ •
18
  response = requests.get(API_URL, headers=headers, params=params)
19
 
20
  if response.status_code == 200 and response.json()['photos']:
21
  photos = response.json()['photos']
22
+ images = []
23
  for photo in photos:
24
  image_url = photo['src']['original']
25
+ response = requests.get(image_url)
26
+ img = Image.open(BytesIO(response.content))
27
+ images.append(img)
28
+
29
+ # ์ด๋ฏธ์ง€๋ฅผ ์˜์ƒ์œผ๋กœ ํ•ฉ์น˜๊ธฐ
30
+ with tempfile.NamedTemporaryFile(delete=False, suffix='.mp4') as tmpfile:
31
+ with imageio.get_writer(tmpfile.name, fps=0.5) as video: # 2์ดˆ ๊ฐ„๊ฒฉ
32
+ for img in images:
33
+ video.append_data(np.array(img))
34
+ return tmpfile.name # ์ž„์‹œ ํŒŒ์ผ์˜ ๊ฒฝ๋กœ ๋ฐ˜ํ™˜
 
 
35
  else:
36
  return "๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค."
37
 
38
  interface = gr.Interface(
39
  fn=search_images,
40
  inputs=gr.Textbox(lines=2, placeholder="๊ฒ€์ƒ‰ํ•  ์ด๋ฏธ์ง€ ํ‚ค์›Œ๋“œ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”"),
41
+ outputs=gr.Video(label="๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ"),
42
  title="Pexels ์ด๋ฏธ์ง€ ๊ฒ€์ƒ‰๊ธฐ",
43
+ description="Pexels์—์„œ ํ‚ค์›Œ๋“œ์— ๋งž๋Š” ์ด๋ฏธ์ง€๋ฅผ ๊ฒ€์ƒ‰ํ•˜๊ณ , ํ•ด๋‹น ์ด๋ฏธ์ง€๋ฅผ ์˜์ƒ์œผ๋กœ ๋ณ€ํ™˜ํ•ฉ๋‹ˆ๋‹ค."
44
  )
45
 
46
  if __name__ == "__main__":