Skip to content

mabroouk/sound

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

<title>تنقية الصوت - أداة أحمد مبروك</title> <style> body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f5f5f5; text-align: center; padding: 40px; direction: rtl; } .container { background: white; padding: 30px; border-radius: 15px; max-width: 700px; margin: auto; box-shadow: 0 0 15px rgba(0,0,0,0.1); } h1 { color: #2c3e50; margin-bottom: 20px; } input[type="file"] { display: none; } label.upload { background-color: #2980b9; color: white; padding: 12px 24px; border-radius: 6px; cursor: pointer; display: inline-block; margin-bottom: 20px; } select { padding: 10px; border-radius: 6px; margin: 10px 0; width: 100%; } option { direction: rtl; } audio { width: 100%; margin: 20px 0; } .btn-process { background-color: #27ae60; color: white; padding: 10px 20px; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; margin-top: 10px; } .btn-process:hover { background-color: #219150; } .note { color: #555; margin-top: 10px; } .alert { background-color: #fff3cd; color: #856404; border: 1px solid #ffeeba; padding: 15px; border-radius: 8px; margin-top: 20px; text-align: right; } </style>

تنقية وتحسين الصوت

<label for="audioUpload" class="upload">📁 اختر ملف صوتي</label>
<input type="file" id="audioUpload" accept="audio/*">

<audio id="audioPlayer" controls style="display:none;"></audio>

<select id="serviceSelect" style="display:none;">
  <option value="adobe">🎙 Adobe Enhance - جودة استوديو، لإزالة الضوضاء من التسجيلات الاحترافية.</option>
  <option value="elevenlabs">🎧 ElevenLabs Voice Isolator - عزل صوت المتكلم بدقة عالية حتى مع وجود أصوات كثيرة بالخلفية.</option>
  <option value="cleanvoice">🎤 Cleanvoice AI - إزالة التنفس والتكرار والتنقية للبودكاست والتسجيلات الطويلة.</option>
  <option value="lalal">🎵 LALAL.AI Voice Cleaner - إزالة الضوضاء والموسيقى الخلفية، مثالي للمقاطع المختلطة.</option>
  <option value="mediaio">🎚 Media.io AI Enhancer - إزالة همهمة المكيفات، الرياح، وضوضاء الشوارع.</option>
</select>

<button class="btn-process" id="processBtn" style="display:none;">🔁 فتح الخدمة المختارة</button>

<div class="alert">
  <strong>🔔 تنبيه هام:</strong>
  <ul>
    <li>الحد الأقصى لطول التسجيل: <strong>30 دقيقة</strong>.</li>
    <li>الملفات المدعومة: MP3 أو WAV.</li>
    <li>جودة احترافية مدعومة بالذكاء الاصطناعي.</li>
  </ul>
</div>
<script> const audioUpload = document.getElementById('audioUpload'); const audioPlayer = document.getElementById('audioPlayer'); const serviceSelect = document.getElementById('serviceSelect'); const processBtn = document.getElementById('processBtn'); const services = { adobe: 'https://podcast.adobe.com/enhance', elevenlabs: 'https://elevenlabs.io/voice-isolator', cleanvoice: 'https://cleanvoice.ai', lalal: 'https://www.lalal.ai/voice-cleaner/', mediaio: 'https://www.media.io/remove-background-noise-from-audio.html' }; audioUpload.addEventListener('change', function () { const file = this.files[0]; if (file) { const url = URL.createObjectURL(file); audioPlayer.src = url; audioPlayer.style.display = 'block'; serviceSelect.style.display = 'block'; processBtn.style.display = 'inline-block'; } }); processBtn.addEventListener('click', () => { const selectedService = serviceSelect.value; if (services[selectedService]) { window.open(services[selectedService], '_blank'); } }); </script>

About

sound cleener

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages