restart it
#17
by ayushamarg - opened
app.py
CHANGED
|
@@ -5,8 +5,6 @@ import uuid
|
|
| 5 |
from pydub import AudioSegment
|
| 6 |
from pydub.silence import split_on_silence
|
| 7 |
import re
|
| 8 |
-
import time
|
| 9 |
-
|
| 10 |
|
| 11 |
def clean_file_name(file_path):
|
| 12 |
# Get the base file name and extension
|
|
@@ -50,70 +48,14 @@ def calculate_duration(file_path):
|
|
| 50 |
return duration_seconds
|
| 51 |
|
| 52 |
|
| 53 |
-
# Some user uploads may trigger Hugging Face privacy policy checks, which can lead to account suspension
|
| 54 |
-
FILE_TIMESTAMPS = {}
|
| 55 |
-
|
| 56 |
-
def track_file(file_path):
|
| 57 |
-
FILE_TIMESTAMPS[file_path] = time.time()
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
def cleanup_tracked_files(max_age_seconds=3600):
|
| 61 |
-
now = time.time()
|
| 62 |
-
to_delete = []
|
| 63 |
-
|
| 64 |
-
for file_path, created_time in FILE_TIMESTAMPS.items():
|
| 65 |
-
if now - created_time > max_age_seconds:
|
| 66 |
-
if os.path.exists(file_path):
|
| 67 |
-
try:
|
| 68 |
-
os.remove(file_path)
|
| 69 |
-
print(f"🗑️ Deleted: {file_path}")
|
| 70 |
-
except Exception as e:
|
| 71 |
-
print(f"⚠️ Error deleting {file_path}: {e}")
|
| 72 |
-
|
| 73 |
-
to_delete.append(file_path)
|
| 74 |
-
|
| 75 |
-
# Remove from tracking
|
| 76 |
-
for f in to_delete:
|
| 77 |
-
FILE_TIMESTAMPS.pop(f, None)
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
def start_cleanup_worker(interval=3600):
|
| 82 |
-
def worker():
|
| 83 |
-
while True:
|
| 84 |
-
print("🔄 Cleaning tracked files...")
|
| 85 |
-
cleanup_tracked_files()
|
| 86 |
-
time.sleep(interval)
|
| 87 |
-
|
| 88 |
-
import threading
|
| 89 |
-
threading.Thread(target=worker, daemon=True).start()
|
| 90 |
-
|
| 91 |
-
|
| 92 |
def process_audio(audio_file, seconds=0.05):
|
| 93 |
-
if audio_file is None:
|
| 94 |
-
return None, None, "No file uploaded"
|
| 95 |
-
|
| 96 |
-
if not os.path.exists(audio_file):
|
| 97 |
-
return None, None, "File not found"
|
| 98 |
-
|
| 99 |
-
track_file(audio_file)
|
| 100 |
-
|
| 101 |
keep_silence = int(seconds * 1000)
|
| 102 |
-
|
| 103 |
-
output_audio_file = remove_silence(
|
| 104 |
-
audio_file,
|
| 105 |
-
minimum_silence=keep_silence
|
| 106 |
-
)
|
| 107 |
-
|
| 108 |
-
track_file(output_audio_file)
|
| 109 |
-
|
| 110 |
before = calculate_duration(audio_file)
|
| 111 |
after = calculate_duration(output_audio_file)
|
| 112 |
-
|
| 113 |
text = f"Old Duration: {before:.3f} seconds \nNew Duration: {after:.3f} seconds"
|
| 114 |
-
|
| 115 |
return output_audio_file, output_audio_file, text
|
| 116 |
-
|
| 117 |
# def ui():
|
| 118 |
# theme = gr.themes.Soft(font=[gr.themes.GoogleFont("Source Sans Pro"), "Arial", "sans-serif"])
|
| 119 |
# css = ".gradio-container {max-width: none !important;} .tab-content {padding: 20px;}"
|
|
@@ -136,8 +78,6 @@ def process_audio(audio_file, seconds=0.05):
|
|
| 136 |
# return demo
|
| 137 |
|
| 138 |
|
| 139 |
-
|
| 140 |
-
|
| 141 |
def ui():
|
| 142 |
theme = gr.themes.Soft(
|
| 143 |
font=[gr.themes.GoogleFont("Source Sans Pro"), "Arial", "sans-serif"]
|
|
@@ -175,22 +115,16 @@ def ui():
|
|
| 175 |
<p style="font-size:1.05em; color:#555; margin:0 0 10px;">
|
| 176 |
Upload an MP3 or WAV file, and it will remove silent parts from it.
|
| 177 |
</p>
|
| 178 |
-
|
| 179 |
-
⚠️ Please don’t upload copyrighted content — it can take this Space offline.
|
| 180 |
-
</p>
|
| 181 |
<p style="font-size:0.9em; color:#777;">
|
| 182 |
-
|
| 183 |
-
<a href="https://github.com/NeuralFalconYT
|
| 184 |
-
|
| 185 |
</a>
|
| 186 |
</p>
|
| 187 |
</div>
|
| 188 |
""")
|
| 189 |
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
with gr.Row():
|
| 195 |
# LEFT: Inputs
|
| 196 |
with gr.Column(scale=1):
|
|
@@ -221,128 +155,7 @@ def ui():
|
|
| 221 |
inputs=[audio_input, silence_threshold],
|
| 222 |
outputs=[audio_output, file_output, duration_output]
|
| 223 |
)
|
| 224 |
-
gr.HTML("""
|
| 225 |
-
<style>
|
| 226 |
-
/* Futuristic Footer Styles */
|
| 227 |
-
@keyframes cyber-border-flow {
|
| 228 |
-
0% {background-position: 0% 50%;}
|
| 229 |
-
50% {background-position: 100% 50%;}
|
| 230 |
-
100% {background-position: 0% 50%;}
|
| 231 |
-
}
|
| 232 |
-
|
| 233 |
-
.cyber-promo-card {
|
| 234 |
-
margin: 50px auto 30px auto;
|
| 235 |
-
max-width: 850px;
|
| 236 |
-
padding: 3px; /* Thickness of the gradient border */
|
| 237 |
-
border-radius: 20px;
|
| 238 |
-
background: linear-gradient(90deg, #ff00cc, #333399, #00f2ff);
|
| 239 |
-
background-size: 200% 200%;
|
| 240 |
-
animation: cyber-border-flow 4s ease infinite;
|
| 241 |
-
box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
|
| 242 |
-
}
|
| 243 |
-
|
| 244 |
-
.cyber-promo-inner {
|
| 245 |
-
background: #0f172a; /* Dark Slate background */
|
| 246 |
-
border-radius: 17px; /* Slightly less than parent to fit border */
|
| 247 |
-
padding: 30px 20px;
|
| 248 |
-
text-align: center;
|
| 249 |
-
position: relative;
|
| 250 |
-
overflow: hidden;
|
| 251 |
-
}
|
| 252 |
-
|
| 253 |
-
/* Subtle grid pattern overlay */
|
| 254 |
-
.cyber-promo-inner::before {
|
| 255 |
-
content: "";
|
| 256 |
-
position: absolute;
|
| 257 |
-
top: 0; left: 0; width: 100%; height: 100%;
|
| 258 |
-
background-image:
|
| 259 |
-
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
|
| 260 |
-
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
|
| 261 |
-
background-size: 40px 40px;
|
| 262 |
-
pointer-events: none;
|
| 263 |
-
z-index: 0;
|
| 264 |
-
}
|
| 265 |
|
| 266 |
-
.cyber-h2 {
|
| 267 |
-
color: #fff;
|
| 268 |
-
font-family: sans-serif;
|
| 269 |
-
font-size: 1.5rem;
|
| 270 |
-
font-weight: 800;
|
| 271 |
-
text-transform: uppercase;
|
| 272 |
-
letter-spacing: 2px;
|
| 273 |
-
margin: 0 0 10px 0;
|
| 274 |
-
text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
|
| 275 |
-
position: relative;
|
| 276 |
-
z-index: 1;
|
| 277 |
-
}
|
| 278 |
-
|
| 279 |
-
.cyber-p {
|
| 280 |
-
color: #cbd5e1;
|
| 281 |
-
font-family: sans-serif;
|
| 282 |
-
font-size: 1rem;
|
| 283 |
-
line-height: 1.5;
|
| 284 |
-
margin: 0 0 25px 0;
|
| 285 |
-
position: relative;
|
| 286 |
-
z-index: 1;
|
| 287 |
-
}
|
| 288 |
-
|
| 289 |
-
.cyber-button {
|
| 290 |
-
display: inline-block;
|
| 291 |
-
padding: 12px 35px;
|
| 292 |
-
background: transparent;
|
| 293 |
-
color: #00f2ff;
|
| 294 |
-
border: 2px solid #00f2ff;
|
| 295 |
-
border-radius: 6px;
|
| 296 |
-
text-decoration: none;
|
| 297 |
-
font-family: sans-serif;
|
| 298 |
-
font-weight: 700;
|
| 299 |
-
font-size: 0.95rem;
|
| 300 |
-
text-transform: uppercase;
|
| 301 |
-
letter-spacing: 1px;
|
| 302 |
-
transition: all 0.3s ease;
|
| 303 |
-
position: relative;
|
| 304 |
-
z-index: 1;
|
| 305 |
-
box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
|
| 306 |
-
}
|
| 307 |
-
|
| 308 |
-
.cyber-button:hover {
|
| 309 |
-
background: #00f2ff;
|
| 310 |
-
color: #000;
|
| 311 |
-
box-shadow: 0 0 30px rgba(0, 242, 255, 0.8);
|
| 312 |
-
transform: scale(1.02);
|
| 313 |
-
}
|
| 314 |
-
|
| 315 |
-
.dev-credit {
|
| 316 |
-
margin-top: 25px;
|
| 317 |
-
font-size: 0.8rem;
|
| 318 |
-
color: #64748b;
|
| 319 |
-
position: relative;
|
| 320 |
-
z-index: 1;
|
| 321 |
-
}
|
| 322 |
-
.dev-credit a {
|
| 323 |
-
color: #94a3b8;
|
| 324 |
-
text-decoration: none;
|
| 325 |
-
transition: color 0.2s;
|
| 326 |
-
}
|
| 327 |
-
.dev-credit a:hover {
|
| 328 |
-
color: #fff;
|
| 329 |
-
}
|
| 330 |
-
</style>
|
| 331 |
-
|
| 332 |
-
<div class="cyber-promo-card">
|
| 333 |
-
<div class="cyber-promo-inner">
|
| 334 |
-
<h2 class="cyber-h2">✂️ Remove Silence from Video is now available</h2>
|
| 335 |
-
<a href="https://huggingface.co/spaces/NeuralFalcon/Remove-Silence-From-Video"
|
| 336 |
-
target="_blank"
|
| 337 |
-
class="cyber-button">
|
| 338 |
-
Try Now
|
| 339 |
-
</a>
|
| 340 |
-
<div class="dev-credit">
|
| 341 |
-
Developed by <a href="https://github.com/NeuralFalconYT" target="_blank">NeuralFalconYT</a>
|
| 342 |
-
</div>
|
| 343 |
-
</div>
|
| 344 |
-
</div>
|
| 345 |
-
""")
|
| 346 |
return demo
|
| 347 |
|
| 348 |
import click
|
|
@@ -350,7 +163,6 @@ import click
|
|
| 350 |
@click.option("--debug", is_flag=True, default=False, help="Enable debug mode.")
|
| 351 |
@click.option("--share", is_flag=True, default=False, help="Enable sharing of the interface.")
|
| 352 |
def main(debug, share):
|
| 353 |
-
start_cleanup_worker()
|
| 354 |
demo=ui()
|
| 355 |
demo.queue().launch(debug=debug, share=share)
|
| 356 |
if __name__ == "__main__":
|
|
|
|
| 5 |
from pydub import AudioSegment
|
| 6 |
from pydub.silence import split_on_silence
|
| 7 |
import re
|
|
|
|
|
|
|
| 8 |
|
| 9 |
def clean_file_name(file_path):
|
| 10 |
# Get the base file name and extension
|
|
|
|
| 48 |
return duration_seconds
|
| 49 |
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
def process_audio(audio_file, seconds=0.05):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
keep_silence = int(seconds * 1000)
|
| 53 |
+
output_audio_file = remove_silence(audio_file, minimum_silence=keep_silence)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
before = calculate_duration(audio_file)
|
| 55 |
after = calculate_duration(output_audio_file)
|
|
|
|
| 56 |
text = f"Old Duration: {before:.3f} seconds \nNew Duration: {after:.3f} seconds"
|
|
|
|
| 57 |
return output_audio_file, output_audio_file, text
|
| 58 |
+
|
| 59 |
# def ui():
|
| 60 |
# theme = gr.themes.Soft(font=[gr.themes.GoogleFont("Source Sans Pro"), "Arial", "sans-serif"])
|
| 61 |
# css = ".gradio-container {max-width: none !important;} .tab-content {padding: 20px;}"
|
|
|
|
| 78 |
# return demo
|
| 79 |
|
| 80 |
|
|
|
|
|
|
|
| 81 |
def ui():
|
| 82 |
theme = gr.themes.Soft(
|
| 83 |
font=[gr.themes.GoogleFont("Source Sans Pro"), "Arial", "sans-serif"]
|
|
|
|
| 115 |
<p style="font-size:1.05em; color:#555; margin:0 0 10px;">
|
| 116 |
Upload an MP3 or WAV file, and it will remove silent parts from it.
|
| 117 |
</p>
|
| 118 |
+
|
|
|
|
|
|
|
| 119 |
<p style="font-size:0.9em; color:#777;">
|
| 120 |
+
Made by
|
| 121 |
+
<a href="https://github.com/NeuralFalconYT" target="_blank" style="text-decoration:none;">
|
| 122 |
+
NeuralFalconYT
|
| 123 |
</a>
|
| 124 |
</p>
|
| 125 |
</div>
|
| 126 |
""")
|
| 127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
with gr.Row():
|
| 129 |
# LEFT: Inputs
|
| 130 |
with gr.Column(scale=1):
|
|
|
|
| 155 |
inputs=[audio_input, silence_threshold],
|
| 156 |
outputs=[audio_output, file_output, duration_output]
|
| 157 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
return demo
|
| 160 |
|
| 161 |
import click
|
|
|
|
| 163 |
@click.option("--debug", is_flag=True, default=False, help="Enable debug mode.")
|
| 164 |
@click.option("--share", is_flag=True, default=False, help="Enable sharing of the interface.")
|
| 165 |
def main(debug, share):
|
|
|
|
| 166 |
demo=ui()
|
| 167 |
demo.queue().launch(debug=debug, share=share)
|
| 168 |
if __name__ == "__main__":
|