|
import requests |
|
import shutil,os,re |
|
|
|
|
|
def search_pexels(keyword, api_key, orientation='potrait', size='medium', endpoint='videos', num_pages=50): |
|
|
|
if orientation not in ['potrait', 'landscape', 'square']: |
|
raise Exception("Error! orientation must be one of {'square', 'landscape', 'potrait'}") |
|
|
|
if size not in ['medium', 'small', 'large']: |
|
raise Exception("Error! size must be one of ['medium', 'small', 'large']") |
|
|
|
base_url = 'https://api.pexels.com/' |
|
|
|
headers = { |
|
'Authorization': f'{api_key}' |
|
} |
|
|
|
url = f'{base_url}{endpoint}/search?query={keyword}&per_page={num_pages}&orientation={orientation}&size={size}' |
|
|
|
|
|
response = requests.get(url, headers=headers) |
|
|
|
|
|
if response.status_code == 200: |
|
data = response.json() |
|
return data |
|
else: |
|
print(f'Error: {response.status_code}') |
|
|
|
|
|
|
|
def download_video(data, parent_path, height, width, links, i): |
|
for x in data['videos'] : |
|
if x['id'] in links: |
|
continue |
|
|
|
vid = x['video_files'] |
|
for v in vid: |
|
if v['height'] == height and v['width'] == width : |
|
with open(f"{os.path.join(parent_path,str(i) + '_' + str(v['id']))}.mp4", 'bw') as f: |
|
f.write(requests.get(v['link']).content) |
|
print("Sucessfully saved video in", os.path.join(parent_path,str(i) + '_' + str(v['id'])) + '.mp4') |
|
return x['id'] |
|
|
|
|
|
|
|
def generate_videos(product, api_key, orientation, height, width, llm_chain=None, sum_llm_chain=None): |
|
prod = product.strip().replace(" ", "_") |
|
links = [] |
|
try : |
|
|
|
|
|
sentences = llm_chain.run(product.strip()) |
|
print('Sentence :', sentences) |
|
|
|
|
|
sentences = [x.strip() for x in re.split(r'\d+\.', sentences) if len(x) > 6] |
|
|
|
|
|
|
|
if os.path.exists(prod): |
|
shutil.rmtree(prod) |
|
os.mkdir(prod) |
|
|
|
|
|
print("Keyword :") |
|
for i,s in enumerate(sentences): |
|
keyword = sum_llm_chain.run(s) |
|
print(i+1, ":", keyword) |
|
data = search_pexels(keyword, api_key, orientation.lower()) |
|
link = download_video(data, prod, height, width, links,i) |
|
links.append(link) |
|
|
|
print("Success! videos has been generated") |
|
except Exception as e : |
|
print("Error! Failed generating videos") |
|
print(e) |
|
|
|
return prod, sentences |
|
|