Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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':
|
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 |
-
|
17 |
for photo in photos:
|
18 |
image_url = photo['src']['original']
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
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.
|
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__":
|