Heil Sound PR 781 Broadcast Microphone
ราคา : (กรุณาสอบถาม)
✅ ซื้อครบ 500 บาท จัดส่งฟรีทั่วประเทศ
🚀 จัดส่งด่วนภายในวัน ทั่วกทม. และปริมณฑล
Description
The Heil Sound PR 781 is a studio-grade microphone designed specifically for high-end amateur radio transceivers (like Icom Pro, Kenwood, Yaesu). It utilizes a similar high-quality dynamic element to the PR 40 but is tailored with a perfect midrange response for speech. It delivers a full, clear, and highly professional vocal sound, making it a significant upgrade for the serious ham radio operator.
Specification
| Type | Broadcast / Amateur Radio Dynamic Microphone |
|---|---|
| Polar Pattern | Cardioid |
| Frequency Response | 50 Hz – 16 kHz |
| Key Features | Designed for high-end radios, full and articulate vocal sound, includes shock mount, Made in USA |
| Impedance | 600 ohms balanced |
| Included Accessories | Shock mount microphone clip |
ข้อมูลสินค้า
import os
import zipfile
from pathlib import Path
import time
# ===== ตั้งค่าชื่อสินค้าที่นี่ =====
TITLE = “ชื่อสินค้าใหม่” # <-- เปลี่ยนชื่อนี้ก่อนรัน
# =================================
# เส้นทางโฟลเดอร์
DOWNLOADS = Path.home() / "Downloads"
EXTRACT_TO = Path.home() / "Desktop" / "AutoRename_Files"
def get_latest_zip():
"""หาชื่อไฟล์ .zip ล่าสุดใน Downloads"""
zip_files = list(DOWNLOADS.glob("*.zip"))
if not zip_files:
print("⚠️ ไม่พบไฟล์ .zip ใน Downloads")
return None
latest_zip = max(zip_files, key=lambda f: f.stat().st_mtime)
return latest_zip
def extract_zip_file(zip_path):
"""แตกไฟล์ zip ที่กำหนด"""
if not EXTRACT_TO.exists():
EXTRACT_TO.mkdir(parents=True, exist_ok=True)
print(f"📂 สร้างโฟลเดอร์: {EXTRACT_TO}")
try:
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
zip_ref.extractall(EXTRACT_TO)
print(f"✅ แตกไฟล์: {zip_path.name}")
except zipfile.BadZipFile:
print(f"❌ ไฟล์เสีย: {zip_path.name}")
def rename_images():
"""เปลี่ยนชื่อไฟล์รูปภาพทั้งหมด"""
exts = [".jpg", ".jpeg", ".png", ".webp"]
counter = 1
for file_path in EXTRACT_TO.glob("**/*"):
if file_path.suffix.lower() in exts:
new_name = f"{TITLE} ({counter}){file_path.suffix}"
new_path = file_path.parent / new_name
file_path.rename(new_path)
print(f"🔄 {file_path.name} → {new_name}")
counter += 1
def main():
print("🚀 เริ่มทำงาน Auto Rename...")
latest_zip = get_latest_zip()
if latest_zip:
extract_zip_file(latest_zip)
time.sleep(1)
rename_images()
print("✅ เสร็จสิ้น! ไฟล์อยู่ที่:", EXTRACT_TO)
time.sleep(2)
if __name__ == "__main__":
main()
รายละเอียดคุณสมบัติ
| ประเภท | Broadcast / Amateur Radio Dynamic Microphone |
|---|---|
| รูปแบบการรับเสียง | Cardioid |
| การตอบสนองความถี่ | 50 Hz – 16 kHz |
| คุณสมบัติเด่น | ออกแบบเพื่อวิทยุระดับไฮเอนด์, ให้เสียงพูดที่เต็มอิ่มและคมชัด, มาพร้อม Shock Mount, Made in USA |
| Impedance | 600 ohms balanced |
| อุปกรณ์เสริม | ที่จับไมค์แบบ Shock Mount |
