Spaces:
Runtime error
Runtime error
File size: 11,340 Bytes
2af1c20 955f567 e074083 6459994 955f567 6459994 955f567 fe9dbf9 6459994 955f567 e074083 6459994 e074083 955f567 6a2ef99 e074083 955f567 fe9dbf9 955f567 6459994 955f567 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 955f567 fe9dbf9 6459994 955f567 fe9dbf9 955f567 6459994 955f567 6459994 955f567 6459994 955f567 fe9dbf9 955f567 6459994 955f567 6459994 955f567 6459994 955f567 fe9dbf9 955f567 8f186bb 955f567 6459994 955f567 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 955f567 6459994 955f567 6459994 955f567 8f186bb 955f567 8f186bb 955f567 6459994 955f567 fe9dbf9 955f567 6459994 955f567 6459994 955f567 8f186bb 955f567 8f186bb 955f567 6459994 955f567 fe9dbf9 955f567 fe9dbf9 6459994 955f567 6459994 955f567 4bbdff0 fe9dbf9 4bbdff0 6459994 4bbdff0 955f567 6459994 955f567 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 6459994 fe9dbf9 955f567 |
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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
import os
import json
import uvicorn
from fastapi import FastAPI, Request
from fastapi.middleware.cors import CORSMiddleware
from contextlib import asynccontextmanager
from models import load_models
from helperfunctions import *
from media_download import YoutubeDownloader
# from transcription import StableWhisper
# from summarizer import Extract_Summary, AudioBookNarration
# from audiobook import AudioBook
global MODELS
### API Configurations
# Context Manager for FastAPI Start/Shutdown
@asynccontextmanager
async def lifespan(app: FastAPI):
## FastAPI Startup Code
# TODO
# Loading ML models
print('Loading ML Models..')
MODELS = load_models()
print('ML Models Loaded!')
yield
## FastAPI Shutdown Code
# Cleaning ML Models & Releasing the Resources
MODELS.clear()
# Initializing FastAPI App
app = FastAPI(lifespan=lifespan)
# Output Directory for Files Storage
output_folder = 'Output'
# Create a context variable to store the contexts for each user
users_context = dict()
# CORS (Cross-Origin Resource Sharing)
origins = [
"http://localhost",
"http://localhost:4200",
]
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
### APIs
@app.get("/get_media_metadata")
async def get_media_metadata(request: Request, url: str):
# Getting User's IP & Generating UUID
user_ip = request.client.host
user_id = generate_uuid(user_ip, url)
# Getting User's Youtube Downloader
youtube_downloader = YoutubeDownloader(url, output_folder)
# Getting Youtube Media Info
media_metadata = youtube_downloader.get_media_metadata()
# Getting Status
status = 1 if media_metadata else 0
if status:
# Storing Info in the context for this user's session
users_context[user_id] = dict()
users_context[user_id]['downloader'] = youtube_downloader
# users_context[user_id]['media_metadata'] = media_metadata
users_context[user_id]['url'] = url
return {'status': status, 'user_id': user_id, 'media_metadata': media_metadata}
@app.get("/get_media_formats")
async def get_media_formats(user_id: str):
# Downloading Media for User
media_formats = users_context[user_id]['downloader'].get_media_formats()
# Getting Status
status = 1 if media_formats else 0
if status:
# Storing Media Info in the context for this user's session
users_context[user_id]['media_formats'] = media_formats
return {'status': status, 'media_formats': media_formats}
@app.get("/download_media")
async def download_media(user_id: str, media_type: str, media_format: str, media_quality: str):
# Downloading Media for User
media_path = users_context[user_id]['downloader'].download(media_type, media_format, media_quality)
# Getting Status
status = 1 if media_path else 0
if status:
# Storing Media Info in the context for this user's session
users_context[user_id]['media_path'] = media_path
users_context[user_id]['media_type'] = media_type
return {'status': status, 'media_path': media_path}
@app.get("/get_transcript")
async def get_transcript(user_id: str, subtitle_format: str = 'srt', word_level: bool = False):
# Retrieving the media_path from the context for this user's session
media_path = users_context[user_id]['media_path']
# Checking if the media_type is Video, then extract it's audio
media_type = users_context[user_id]['media_type']
if media_type == 'video':
media_path = extract_audio(media_path)
# # Whisper based transcription
# stable_whisper_transcript = StableWhisper(media_path, output_folder, subtitle_format=subtitle_format, word_level=word_level)
# transcript = stable_whisper_transcript.generate_transcript()
# transcript_path = stable_whisper_transcript.save_transcript()
temp_dir = 'temp'
if word_level:
transcript_path = os.path.join(temp_dir, 'word_level_transcript.json')
with open(transcript_path, "r") as json_file:
transcript = json.load(json_file)
else:
transcript_path = os.path.join(temp_dir, 'sentence_level_transcript.json')
with open(transcript_path, "r") as json_file:
transcript = json.load(json_file)
# Getting Status
status = 1 if transcript else 0
if status:
# Storing Transcript Info in the context for this user's session
users_context[user_id]['transcript'] = transcript
users_context[user_id]['transcript_path'] = transcript_path
return {'status': status, "transcript": transcript}
@app.get("/get_translation")
async def get_translation(user_id: str, target_language: str = 'en'):
# Retrieving the transcript from the context for this user's session
transcript = users_context[user_id]['transcript']
# # # NLLB based Translation
# nllb_translator = Translation(transcript, transcript['language'], target_language, 'output_path')
# translated_transcript = nllb_translator.get_translated_transcript()
# translated_subtitles = nllb_translator.get_translated_subtitles()
temp_dir = 'temp'
translated_transcript_path = os.path.join(temp_dir, 'translated_transcript.txt')
with open(translated_transcript_path, "r", encoding="utf-8") as f:
translated_transcript = f.read()
translated_subtitles_path = os.path.join(temp_dir, 'translated_subtitles.json')
with open(translated_subtitles_path, "r", encoding="utf-8") as json_file:
translated_subtitles = json.load(json_file)
# Getting Status
status = 1 if translated_transcript and translated_subtitles else 0
if status:
# Storing Translated Transcript Info in the context for this user's session
users_context[user_id]['translated_transcript'] = translated_transcript
users_context[user_id]['translated_subtitles'] = translated_subtitles
# users_context[user_id]['transcript_path'] = transcript_path
return {'status': status, "transcript": translated_transcript, "subtitles": translated_subtitles}
@app.get("/get_summary")
async def get_summary(user_id: str, Summary_type: str, Summary_strategy: str, Target_Person_type: str,
Response_length: str, Writing_style: str, text_input: str = None):
# Getting Transcript if not provided
if not text_input:
text_input = users_context[user_id]['transcript']
# # Extracting Summary
# summary_extractor = Extract_Summary(text_input=text_input)
# output = summary_extractor.define_chain(Summary_type=Summary_type,
# Summary_strategy=Summary_strategy,
# Target_Person_type=Target_Person_type,
# Response_length=Response_length,
# Writing_style=Writing_style,
# key_information=False)
temp_dir = 'temp'
file_path = os.path.join(temp_dir, 'summary.txt')
with open(file_path, 'r') as file:
output = file.read()
# Getting Status
status = 1 if output else 0
if status:
# Storing Summary Info in the context for this user's session
users_context[user_id]['summary'] = output
return {'status': status, "summary": output}
@app.get("/get_key_info")
async def get_key_info(user_id: str, Summary_type: str, Summary_strategy: str, Target_Person_type: str,
Response_length: str, Writing_style: str, text_input: str = None):
# Getting Transcript if not provided
if not text_input:
text_input = users_context[user_id]['transcript']
# # Extracting Summary
# summary_extractor = Extract_Summary(text_input=text_input)
# output = summary_extractor.define_chain(Summary_type=Summary_type,
# Summary_strategy=Summary_strategy,
# Target_Person_type=Target_Person_type,
# Response_length=Response_length,
# Writing_style=Writing_style,
# key_information=True)
temp_dir = 'temp'
file_path = os.path.join(temp_dir, 'key_info.txt')
with open(file_path, 'r') as file:
output = file.read()
# Getting Status
status = 1 if output else 0
if status:
# Storing Key Info in the context for this user's session
users_context[user_id]['key_info'] = output
return {'status': status, "key_info": output}
@app.get("/get_audiobook")
async def get_audiobook(user_id: str, narration_style: str, speaker: str = "male", text_input: str = None,
audio_format: str = "mp3", audio_quality: str = "128kbps"):
# Getting Transcript if not provided
if not text_input:
text_input = users_context[user_id]['transcript']
# # Extracting Narration
# narrator = AudioBookNarration(text_input=text_input)
# output = narrator.define_chain(narration_style=narration_style)
# # Generating Audiobook
# audiobook = AudioBook(output_folder=output_folder)
# audio_path = audiobook.generate_audio_from_text(output, speaker=speaker, filename="output_audio")
# # Converting the Audio to Required Audio Parameters
# audio_path = convert_audio(audio_path, audio_format, audio_quality)
temp_dir = 'temp'
file_path = os.path.join(temp_dir, 'narration.txt')
audio_path = file_path
# Getting Status
status = 1 if audio_path else 0
if status:
# Storing Audiobook path in the context for this user's session
users_context[user_id]['audiobook_path'] = audio_path
return {'status': status, "audiobook_path": audio_path}
@app.get("/get_rendered_video")
async def get_rendered_video(user_id: str, video_format: str, video_quality: str, subtitles_type: str = 'original'):
# # Retrieving the media_path from the context for this user's session
# media_path = users_context[user_id]['media_path']
# Downloading Video with Required Video Parameters for User
media_path = users_context[user_id]['downloader'].download('video', video_format, video_quality)
# Getting Required Subtitles
if subtitles_type.lower() == 'original':
subtitles_path = users_context[user_id]['transcript_path']
elif subtitles_type.lower() == 'translated':
# Getting Translated Subtitles from the context for this user's session
translated_subtitles = users_context[user_id]['translated_subtitles']
# Saving Translated Subtitles
subtitles_path = save_translated_subtitles(translated_subtitles, media_path)
# Burning Subtitles & Rendering Video
rendered_video_path = burn_subtitles(media_path, subtitles_path)
# Getting Status
status = 1 if rendered_video_path else 0
return {'status': status, "rendered_video_path": rendered_video_path}
if __name__ == "__main__":
uvicorn.run(app, host="127.0.0.1", port=8000) |