Remove Audio from Video Instantly

Secure, browser-side processing. Your files never leave your device.

upload_file

Click or Drag video here

Supports MP4, MOV, WEBM, MKV

About the Developer

Generated dynamically using Python (PyScript)

Loading profile...
Star
import js def create_profile(): # Developer Data dev_data = { "name": "Dippan Bhusal", "role": "Full Stack Developer", "socials": [ {"platform": "GitHub", "handle": "KDippan", "url": "https://github.com/KDippan", "icon": "code"}, {"platform": "LinkedIn", "handle": "KDippan", "url": "https://linkedin.com/in/KDippan", "icon": "work"}, {"platform": "X (Twitter)", "handle": "@dippanbhusal", "url": "https://x.com/dippanbhusal", "icon": "alternate_email"}, {"platform": "Facebook", "handle": "dippan.bhusall", "url": "https://facebook.com/dippan.bhusall", "icon": "public"}, {"platform": "Instagram", "handle": "@dippan.bhusal", "url": "https://instagram.com/dippan.bhusal", "icon": "photo_camera"}, {"platform": "Email", "handle": "dippan.connect@gmail.com", "url": "mailto:dippan.connect@gmail.com", "icon": "mail"} ] } # Build HTML String html_content = f"""

{dev_data['name']}

{dev_data['role']}

Passionate about building secure, serverless web applications using Python, JavaScript, and AI technologies.

""" for social in dev_data['socials']: html_content += f""" {social['icon']} {social['platform']} """ html_content += "
" # CRITICAL FIX: Direct DOM injection target = js.document.getElementById("py-dev-profile") target.innerHTML = html_content create_profile()