Spaces:
Sleeping
Sleeping
File size: 8,489 Bytes
eb5e86e a51cbe1 d3cb1f3 3e510b3 16ca3cf 294797a c825999 56cb5b5 294797a e1097ba 294797a 4e0b2a1 294797a 22e0cfe 4e0b2a1 f621cdf 4e0b2a1 22e0cfe 294797a 3e510b3 d3cb1f3 c825999 a8d74c6 3e510b3 d3cb1f3 4d300d7 3e510b3 d3cb1f3 0e0f707 3e510b3 d3cb1f3 a8d74c6 3e510b3 7990584 3e510b3 7990584 3e510b3 7990584 3e510b3 7990584 3e510b3 294797a 4e0b2a1 294797a 3e510b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
import os
import gradio as gr
import requests
import gradio as gr
from gradio_client import Client
import json
import re
from moviepy.editor import VideoFileClip
from moviepy.audio.AudioClip import AudioClip
def search_pexels_videos(query):
API_KEY = os.getenv("API_KEY")
url = f"https://api.pexels.com/videos/search?query={query}&per_page=80"
headers = {"Authorization": API_KEY}
response = requests.get(url, headers=headers)
data = response.json()
# 'videos' ํค์ ์กด์ฌ ์ฌ๋ถ๋ฅผ ํ์ธํ๊ณ , ์กด์ฌํ์ง ์์ ๊ฒฝ์ฐ ๋น ๋ฆฌ์คํธ ๋ฐํ
if 'videos' in data:
videos_urls = [{"url": video['url'], "image": video['image']} for video in data['videos']]
else:
print("No 'videos' key in response data. Returning empty list.")
videos_urls = []
return videos_urls
# Pexels ๋์์ ๊ฒ์ ๊ฒฐ๊ณผ๋ฅผ HTML ๋งํฌ๋ก ํ์ํ๋ ํจ์
def show_video_search_results(query):
videos_info = search_pexels_videos(query)
videos_html = [
f"<div style='margin: 10px; display: inline-block;'><a href='{video['url']}' target='_blank' style='text-decoration: none;'><img src='{video['image']}' alt='Video thumbnail' style='width: 200px;'><p>View Video</p></a></div>"
for video in videos_info
]
return "".join(videos_html)
# Pexels ์ด๋ฏธ์ง ๊ฒ์ ํจ์
def search_pexels_images(query):
API_KEY = os.getenv("API_KEY")
url = f"https://api.pexels.com/v1/search?query={query}&per_page=80"
headers = {"Authorization": API_KEY}
response = requests.get(url, headers=headers)
data = response.json()
images_urls = [photo['src']['medium'] for photo in data['photos']]
return images_urls
# Pexels ์ด๋ฏธ์ง ๊ฒ์ ๊ฒฐ๊ณผ ํ์ ํจ์
def show_search_results(query):
images_urls = search_pexels_images(query)
return images_urls
def extract_audio(video_in):
input_video = video_in
output_audio = 'audio.wav'
# Open the video file and extract the audio
video_clip = VideoFileClip(input_video)
audio_clip = video_clip.audio
# Save the audio as a .wav file
audio_clip.write_audiofile(output_audio, fps=44100) # Use 44100 Hz as the sample rate for .wav files
print("Audio extraction complete.")
return 'audio.wav'
def get_caption_from_kosmos(image_in):
kosmos2_client = Client("https://ydshieh-kosmos-2.hf.space/")
kosmos2_result = kosmos2_client.predict(
image_in, # str (filepath or URL to image) in 'Test Image' Image component
"Detailed", # str in 'Description Type' Radio component
fn_index=4
)
print(f"KOSMOS2 RETURNS: {kosmos2_result}")
with open(kosmos2_result[1], 'r') as f:
data = json.load(f)
reconstructed_sentence = []
for sublist in data:
reconstructed_sentence.append(sublist[0])
full_sentence = ' '.join(reconstructed_sentence)
#print(full_sentence)
# Find the pattern matching the expected format ("Describe this image in detail:" followed by optional space and then the rest)...
pattern = r'^Describe this image in detail:\s*(.*)$'
# Apply the regex pattern to extract the description text.
match = re.search(pattern, full_sentence)
if match:
description = match.group(1)
print(description)
else:
print("Unable to locate valid description.")
# Find the last occurrence of "."
last_period_index = description.rfind('.')
# Truncate the string up to the last period
truncated_caption = description[:last_period_index + 1]
# print(truncated_caption)
print(f"\nโ\nIMAGE CAPTION: {truncated_caption}")
return truncated_caption
def get_caption(image_in):
client = Client("https://vikhyatk-moondream1.hf.space/")
result = client.predict(
image_in, # filepath in 'image' Image component
"Describe precisely the image in one sentence.", # str in 'Question' Textbox component
api_name="/answer_question"
)
print(result)
return result
def get_magnet(prompt):
amended_prompt = f"{prompt}"
print(amended_prompt)
client = Client("https://fffiloni-magnet.hf.space/")
result = client.predict(
"facebook/audio-magnet-medium", # Literal['facebook/magnet-small-10secs', 'facebook/magnet-medium-10secs', 'facebook/magnet-small-30secs', 'facebook/magnet-medium-30secs', 'facebook/audio-magnet-small', 'facebook/audio-magnet-medium'] in 'Model' Radio component
"", # str in 'Model Path (custom models)' Textbox component
amended_prompt, # str in 'Input Text' Textbox component
3, # float in 'Temperature' Number component
0.9, # float in 'Top-p' Number component
10, # float in 'Max CFG coefficient' Number component
1, # float in 'Min CFG coefficient' Number component
20, # float in 'Decoding Steps (stage 1)' Number component
10, # float in 'Decoding Steps (stage 2)' Number component
10, # float in 'Decoding Steps (stage 3)' Number component
10, # float in 'Decoding Steps (stage 4)' Number component
"prod-stride1 (new!)", # Literal['max-nonoverlap', 'prod-stride1 (new!)'] in 'Span Scoring' Radio component
api_name="/predict_full"
)
print(result)
return result[1]
def get_audioldm(prompt):
client = Client("https://haoheliu-audioldm2-text2audio-text2music.hf.space/")
result = client.predict(
prompt, # str in 'Input text' Textbox component
"Low quality. Music.", # str in 'Negative prompt' Textbox component
10, # int | float (numeric value between 5 and 15) in 'Duration (seconds)' Slider component
3.5, # int | float (numeric value between 0 and 7) in 'Guidance scale' Slider component
45, # int | float in 'Seed' Number component
3, # int | float (numeric value between 1 and 5) in 'Number waveforms to generate' Slider component
fn_index=1
)
print(result)
audio_result = extract_audio(result)
return audio_result
def get_audiogen(prompt):
client = Client("https://fffiloni-audiogen.hf.space/")
result = client.predict(
prompt,
10,
api_name="/infer"
)
return result
def infer(image_in, chosen_model):
caption = get_caption(image_in)
if chosen_model == "MAGNet" :
magnet_result = get_magnet(caption)
return magnet_result
elif chosen_model == "AudioLDM-2" :
audioldm_result = get_audioldm(caption)
return audioldm_result
elif chosen_model == "AudioGen" :
audiogen_result = get_audiogen(caption)
return audiogen_result
css="""
#col-container{
margin: 0 auto;
max-width: 800px;
}
"""
with gr.Blocks() as app:
with gr.Tabs():
with gr.TabItem("Image to Audio"):
with gr.Column():
gr.Markdown("### Image to Audio")
image_in = gr.Image(sources=["upload"], type="filepath", label="Image input")
chosen_model = gr.Radio(label="Choose a model", choices=["MAGNet", "AudioLDM-2", "AudioGen"], value="AudioLDM-2")
submit_btn = gr.Button("Submit")
audio_o = gr.Audio(label="Audio output")
submit_btn.click(
fn=infer,
inputs=[image_in, chosen_model],
outputs=audio_o
)
with gr.TabItem("FREE Image Search"):
with gr.Column():
gr.Markdown("### FREE Image Search")
search_query = gr.Textbox(label="์ฌ์ง ๊ฒ์")
search_btn = gr.Button("๊ฒ์")
images_output = gr.Gallery(label="๊ฒ์ ๊ฒฐ๊ณผ ์ด๋ฏธ์ง")
search_btn.click(
fn=show_search_results,
inputs=search_query,
outputs=images_output
)
with gr.TabItem("FREE Video Search"):
with gr.Column():
gr.Markdown("### FREE Video Search")
video_search_query = gr.Textbox(label="๋น๋์ค ๊ฒ์")
video_search_btn = gr.Button("๊ฒ์")
# HTML ์ปดํฌ๋ํธ๋ก ๋น๋์ค ๊ฒ์ ๊ฒฐ๊ณผ ํ์
videos_output = gr.HTML(label="๊ฒ์ ๊ฒฐ๊ณผ ๋์์")
video_search_btn.click(
fn=show_video_search_results,
inputs=video_search_query,
outputs=videos_output
)
app.launch(debug=True) |