המלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה
-
@מים-אחרונים כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
@המלאך אני אמור לראות את המסלול של הטיל בשידור?
באמת לא הבנתי.אולי זה בכלל מערכת איראנית מבוססת על GPS של הטילים עצמם ויש שם גם התראות כבר בתכנון של השיגור...
זה מבוסס על מכ"מים של פיוקד העורף אבל הם לא מחוייבים לכלום ולא חשופים לביקורת כלשהי כך שיש להם נתונים לא הכי מדויקים אבל יותר מהירים.
@המלאך כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
ואמרתי שיכול להיות שזה לא עבד בגלל עדכון גירסה.
בכל מקרה לי זה עובד חלק עכשיו..יכול להיות שצריך להתחבר? כי כבר הרבה זמן הוא כותב לי שהוא מתחבר.
-
@גבר
הכוונה להיות אונליין.
אין צורך להירשם או להתחבר.
יש לך בעיות בקליטה כנראה..
נסה לרענן כמה פעמים או לשפר מיקום...לי לדוגמא זה כותב מחובר...
-
@המלאך אני כותב פה משמע אני מחובר.......
@המלאך כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
או לשפר מיקום...
זה מבוסס מיקום?
-
מצורף קישור
https://iwm.diskin.net/ -
@efishesh כשיש טילים רואים מאיפה הם יצאו ואיפה הם אמורים לנחות (אילמלי יורטו)
-
@שמואל-ש. פשוט מאוד כשאתה מקבל התרעה בטלפון תיכנס לאתר ותראה את הטיל עם קו אדום לאיזה איזור זה אמור להגיע
וכן איפה נמצא בדיוק הטיל
וכל זה לפני האזעקה
נ.ב.
גם אם אתה רואה שזה לא מגיע לאיזור שלך
תיכנס לאזור מוגן
כי אני לא יודע עד כמה זה אמין לגבי מקום נפילה וכן אם יש יירוט (בעזרת השם) הרסיסים יכול ליפול באזור אחר
תודה -
יכול להיות שהאתר הזה צריך חיבור יציב וחזק יותר מאתרים אחרים דומים (לדוג' פיקוד העורף)? כי זה לא עובד לי עם סטיק שהקליטה שלו יחסית נמוכה.
-
גם לי האתר לא עובד אולי זה קשור לקליטה?
-
קוד לקונסול שמשמיע צליל כשיש שיגורים
לא בדקתי את זה בלייב אלא על שיגורים קודמים מההיסטוריה לכאורה אין הבדל אבל לא נוסה בפועל(function() { const AudioContext = window.AudioContext || window.webkitAudioContext; const audioCtx = new AudioContext(); let isAudioEnabled = false; function playAlarm() { if (!isAudioEnabled) return; const beepDuration = 0.15; const pauseDuration = 0.1; const now = audioCtx.currentTime; for (let i = 0; i < 5; i++) { const startTime = now + i * (beepDuration + pauseDuration); const oscillator = audioCtx.createOscillator(); const gainNode = audioCtx.createGain(); oscillator.type = 'square'; oscillator.frequency.setValueAtTime(850, startTime); gainNode.gain.setValueAtTime(0, startTime); gainNode.gain.linearRampToValueAtTime(0.8, startTime + 0.02); gainNode.gain.setValueAtTime(0.8, startTime + beepDuration - 0.02); gainNode.gain.linearRampToValueAtTime(0, startTime + beepDuration); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.start(startTime); oscillator.stop(startTime + beepDuration); } } const btn = document.createElement('button'); btn.innerText = 'בדיקה'; btn.style.cssText = 'position: fixed; bottom: 20px; left: 20px; z-index: 999999; padding: 15px; background-color: #ff4444; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3);'; document.body.appendChild(btn); btn.addEventListener('click', () => { isAudioEnabled = true; btn.style.backgroundColor = '#4CAF50'; btn.innerText = 'מאזין לשיגורים'; if (audioCtx.state === 'suspended') { audioCtx.resume(); } playAlarm(); }); setInterval(() => { const markers = document.querySelectorAll('.map-marker-enter:not([data-beeped="true"])'); let newAlertFound = false; markers.forEach(marker => { const title = marker.getAttribute('title') || ''; if (title.includes('שיגור') || title.includes('Launch') || title.includes('Rocket') || title.includes('ירי')) { marker.setAttribute('data-beeped', 'true'); console.log('התראה חדשה הופיעה על המפה:', title); newAlertFound = true; } else { marker.setAttribute('data-beeped', 'true'); } }); if (newAlertFound) { playAlarm(); } }, 2000); console.log("לחץ על הכפתור לבדיקה."); })(); -
קוד לקונסול שמשמיע צליל כשיש שיגורים
לא בדקתי את זה בלייב אלא על שיגורים קודמים מההיסטוריה לכאורה אין הבדל אבל לא נוסה בפועל(function() { const AudioContext = window.AudioContext || window.webkitAudioContext; const audioCtx = new AudioContext(); let isAudioEnabled = false; function playAlarm() { if (!isAudioEnabled) return; const beepDuration = 0.15; const pauseDuration = 0.1; const now = audioCtx.currentTime; for (let i = 0; i < 5; i++) { const startTime = now + i * (beepDuration + pauseDuration); const oscillator = audioCtx.createOscillator(); const gainNode = audioCtx.createGain(); oscillator.type = 'square'; oscillator.frequency.setValueAtTime(850, startTime); gainNode.gain.setValueAtTime(0, startTime); gainNode.gain.linearRampToValueAtTime(0.8, startTime + 0.02); gainNode.gain.setValueAtTime(0.8, startTime + beepDuration - 0.02); gainNode.gain.linearRampToValueAtTime(0, startTime + beepDuration); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.start(startTime); oscillator.stop(startTime + beepDuration); } } const btn = document.createElement('button'); btn.innerText = 'בדיקה'; btn.style.cssText = 'position: fixed; bottom: 20px; left: 20px; z-index: 999999; padding: 15px; background-color: #ff4444; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3);'; document.body.appendChild(btn); btn.addEventListener('click', () => { isAudioEnabled = true; btn.style.backgroundColor = '#4CAF50'; btn.innerText = 'מאזין לשיגורים'; if (audioCtx.state === 'suspended') { audioCtx.resume(); } playAlarm(); }); setInterval(() => { const markers = document.querySelectorAll('.map-marker-enter:not([data-beeped="true"])'); let newAlertFound = false; markers.forEach(marker => { const title = marker.getAttribute('title') || ''; if (title.includes('שיגור') || title.includes('Launch') || title.includes('Rocket') || title.includes('ירי')) { marker.setAttribute('data-beeped', 'true'); console.log('התראה חדשה הופיעה על המפה:', title); newAlertFound = true; } else { marker.setAttribute('data-beeped', 'true'); } }); if (newAlertFound) { playAlarm(); } }, 2000); console.log("לחץ על הכפתור לבדיקה."); })(); -
קוד לקונסול שמשמיע צליל כשיש שיגורים
לא בדקתי את זה בלייב אלא על שיגורים קודמים מההיסטוריה לכאורה אין הבדל אבל לא נוסה בפועל(function() { const AudioContext = window.AudioContext || window.webkitAudioContext; const audioCtx = new AudioContext(); let isAudioEnabled = false; function playAlarm() { if (!isAudioEnabled) return; const beepDuration = 0.15; const pauseDuration = 0.1; const now = audioCtx.currentTime; for (let i = 0; i < 5; i++) { const startTime = now + i * (beepDuration + pauseDuration); const oscillator = audioCtx.createOscillator(); const gainNode = audioCtx.createGain(); oscillator.type = 'square'; oscillator.frequency.setValueAtTime(850, startTime); gainNode.gain.setValueAtTime(0, startTime); gainNode.gain.linearRampToValueAtTime(0.8, startTime + 0.02); gainNode.gain.setValueAtTime(0.8, startTime + beepDuration - 0.02); gainNode.gain.linearRampToValueAtTime(0, startTime + beepDuration); oscillator.connect(gainNode); gainNode.connect(audioCtx.destination); oscillator.start(startTime); oscillator.stop(startTime + beepDuration); } } const btn = document.createElement('button'); btn.innerText = 'בדיקה'; btn.style.cssText = 'position: fixed; bottom: 20px; left: 20px; z-index: 999999; padding: 15px; background-color: #ff4444; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.3);'; document.body.appendChild(btn); btn.addEventListener('click', () => { isAudioEnabled = true; btn.style.backgroundColor = '#4CAF50'; btn.innerText = 'מאזין לשיגורים'; if (audioCtx.state === 'suspended') { audioCtx.resume(); } playAlarm(); }); setInterval(() => { const markers = document.querySelectorAll('.map-marker-enter:not([data-beeped="true"])'); let newAlertFound = false; markers.forEach(marker => { const title = marker.getAttribute('title') || ''; if (title.includes('שיגור') || title.includes('Launch') || title.includes('Rocket') || title.includes('ירי')) { marker.setAttribute('data-beeped', 'true'); console.log('התראה חדשה הופיעה על המפה:', title); newAlertFound = true; } else { marker.setAttribute('data-beeped', 'true'); } }); if (newAlertFound) { playAlarm(); } }, 2000); console.log("לחץ על הכפתור לבדיקה."); })();@efishesh למה זה? לאתר של השידור חי?
-
@efishesh למה זה? לאתר של השידור חי?
@ישראל-1111
זה לאתר
מריצים בקונסול וכשיש שיגור הוא משמיע צליל -
מצורף קישור
https://iwm.diskin.net/@mnir אני מבין שזה חסום ולא- לא נבדק?

-
@mnir אני מבין שזה חסום ולא- לא נבדק?

@חכם-בלילה-1 זה אפשר לערער גם על חסימה לא ? עם כמה אנשים יבקשו סיגכוי גדול שהם יפתחו את זה שוב...
(בתקווה שבאמת אין בעיה באתר הנ''ל) -
@חכם-בלילה-1 זה אפשר לערער גם על חסימה לא ? עם כמה אנשים יבקשו סיגכוי גדול שהם יפתחו את זה שוב...
(בתקווה שבאמת אין בעיה באתר הנ''ל)@העניו-הגאה כתב בהמלצה | אתר לשידור חי מטילים מאיראן וצפי לאיזה כוון הוא נשלח ויופעל אזעקה:
זה אפשר לערער גם על חסימה לא ?
@העניו-הגאה יש להם קטע עם חדשות
אולי בגלל הדינמיות והמקורות..

