Gumla News: गुमला जिले के डुमरी थाना क्षेत्र खेतली पंचायत के राताशिली गांव में रविवार की सुबह ग्रामीणों और प्रशासन की संयुक्त कार्रवाई में एक बड़ा अवैध मवेशी तस्करी का मामला सामने आया है। इस दौरान एक बोलेरो वाहन से तीन मवेशी बरामद किए गए
अपनी भाषा में पढ़ें
=2){return!0}
return!1}
function getArticleText(){const postContent=findPostContentWidget();if(!postContent){console.error("PUBLIC ADDA TTS: Post Content widget नहीं मिला");return""}
const clone=postContent.cloneNode(!0);removeUnwanted(clone);const readableElements=clone.querySelectorAll("p, h2, h3, h4, h5, h6, blockquote, li");const parts=[];const seen=new Set();readableElements.forEach(function(element){if(element.matches("li")&&element.querySelector("p, h2, h3, h4, h5, h6")){return}
let text=cleanText(element.textContent);if(!text||text.length<2){return}
if(looksLikeCode(text)){return}
const key=text.toLowerCase().replace(/\s+/g," ").trim();if(seen.has(key)){return}
seen.add(key);parts.push(text)});if(parts.length>0){const paragraphText=cleanText(parts.join("। "));if(paragraphText.length>50){console.log("PUBLIC ADDA TTS ARTICLE METHOD 1");console.log("ARTICLE LENGTH:",paragraphText.length);console.log("ARTICLE:",paragraphText);return paragraphText}}
let articleText=clone.innerText||clone.textContent||"";articleText=cleanText(articleText);articleText=articleText.replace(/\bAdvertisement\b/gi," ").replace(/विज्ञापन/g," ").replace(/\s+/g," ").trim();if(looksLikeCode(articleText)){console.error("PUBLIC ADDA TTS: Content looked like code");return""}
if(articleText.length>50){console.log("PUBLIC ADDA TTS ARTICLE METHOD 2");console.log("ARTICLE LENGTH:",articleText.length);console.log("ARTICLE:",articleText);return articleText}
console.error("PUBLIC ADDA TTS: Post Content मिला लेकिन text नहीं मिला");return""}
function getHindiVoice(){const voices=synth.getVoices();if(!voices||!voices.length){return null}
let voice=voices.find(function(v){return(v.lang&&v.lang.toLowerCase()==="hi-in")});if(voice){return voice}
voice=voices.find(function(v){return(v.lang&&v.lang.toLowerCase().startsWith("hi"))});if(voice){return voice}
voice=voices.find(function(v){return/hindi/i.test(v.name)});return voice||null}
function splitLongText(text,maxLength){const words=text.split(" ");const result=[];let buffer="";words.forEach(function(word){const combined=buffer?buffer+" "+word:word;if(combined.length<=maxLength){buffer=combined}else{if(buffer){result.push(buffer)}
buffer=word}});if(buffer){result.push(buffer)}
return result}
function createChunks(text){const maxLength=180;const sentences=text.match(/[^।.!?\n]+[।.!?]?/g)||[text];const result=[];let buffer="";sentences.forEach(function(sentence){sentence=cleanText(sentence);if(!sentence){return}
if(sentence.length>maxLength){if(buffer){result.push(buffer);buffer=""}
const smallerParts=splitLongText(sentence,maxLength);smallerParts.forEach(function(part){if(part){result.push(part)}});return}
const combined=buffer?buffer+" "+sentence:sentence;if(combined.length<=maxLength){buffer=combined}else{if(buffer){result.push(buffer)}
buffer=sentence}});if(buffer){result.push(buffer)}
return result}
function getSpeed(){const value=parseFloat(speedSelect.value);if(isNaN(value)){return 0.95}
return value}
function speakNext(thisSession){if(!isPlaying||thisSession!==sessionID){return}
if(currentChunk>=speechChunks.length){finishReader();return}
const text=speechChunks[currentChunk];const utterance=new SpeechSynthesisUtterance(text);utterance.lang="hi-IN";utterance.rate=getSpeed();utterance.pitch=1;utterance.volume=1;const hindiVoice=getHindiVoice();if(hindiVoice){utterance.voice=hindiVoice}
utterance.onend=function(){if(!isPlaying||thisSession!==sessionID){return}
currentChunk++;setTimeout(function(){speakNext(thisSession)},70)};utterance.onerror=function(event){if(event.error==="canceled"||event.error==="interrupted"){return}
console.warn("PUBLIC ADDA TTS SPEECH ERROR:",event.error);if(!isPlaying||thisSession!==sessionID){return}
currentChunk++;setTimeout(function(){speakNext(thisSession)},100)};synth.speak(utterance)}
function startReader(){const title=getPostTitle();const article=getArticleText();console.log("====================================");console.log("PUBLIC ADDA NEWS TTS");console.log("TITLE:",title);console.log("ARTICLE LENGTH:",article.length);console.log("ARTICLE:",article);console.log("====================================");if(!article){alert("खबर का मुख्य कंटेंट नहीं मिला।");return}
let fullText="";if(title){fullText+=title+"। "}
fullText+=article;speechChunks=createChunks(fullText);console.log("PUBLIC ADDA TTS CHUNKS:",speechChunks.length);if(speechChunks.length===0){alert("खबर पढ़ने के लिए टेक्स्ट नहीं मिला।");return}
synth.cancel();sessionID++;const thisSession=sessionID;currentChunk=0;isPlaying=!0;isPaused=!1;icon.textContent="⏸";label.textContent="पॉज करें";stopButton.style.display="inline-block";setTimeout(function(){speakNext(thisSession)},180)}
playButton.addEventListener("click",function(){if(!isPlaying){startReader();return}
if(isPaused){synth.resume();isPaused=!1;icon.textContent="⏸";label.textContent="पॉज करें";return}
synth.pause();isPaused=!0;icon.textContent="▶";label.textContent="फिर सुनें"});stopButton.addEventListener("click",function(){stopReader()});function stopReader(){sessionID++;isPlaying=!1;isPaused=!1;synth.cancel();speechChunks=[];currentChunk=0;icon.textContent="🔊";label.textContent="खबर सुनें";stopButton.style.display="none"}
function finishReader(){isPlaying=!1;isPaused=!1;speechChunks=[];currentChunk=0;icon.textContent="🔊";label.textContent="फिर से सुनें";stopButton.style.display="none"}
window.addEventListener("pagehide",function(){synth.cancel()});window.addEventListener("beforeunload",function(){synth.cancel()});synth.getVoices();if("onvoiceschanged" in synth){synth.onvoiceschanged=function(){synth.getVoices()}}}
if(document.readyState==="loading"){document.addEventListener("DOMContentLiteSpeedLoaded",function(){setTimeout(initTTS,700)})}else{setTimeout(initTTS,700)}})()
Gumla News:गुमला जिले के डुमरी थाना क्षेत्र खेतली पंचायत के राताशिली गांव में रविवार की सुबह ग्रामीणों और प्रशासन की संयुक्त कार्रवाई में एक बड़ा अवैध मवेशी तस्करी का मामला सामने आया है। इस दौरान एक बोलेरो वाहन से तीन मवेशी बरामद किए गए और दो तस्करों को भी गिरफ्तार किया गया है। गुप्त सूचना के आधार पर पुलिस को पता चला था कि एक बोलेरो से अवैध रूप से मवेशी ले जाए जा रहे हैं।
तस्करी में इस्तेमाल बोलेरो।
इसके बाद जैरागी और डुमरडार इलाके में ग्रामीणों ने बोलेरो को रोकने का प्रयास किया, लेकिन चालक गाड़ी लेकर भागने में सफल रहा। इसके बाद ग्रामीणों और प्रशासनिक दल ने पीछा किया और आखिरकार खेतली पंचायत के राताशैली गांव में बोलेरो को पकड़ लिया। पकड़े गए बोलेरो का नंबर JH 07D 8428 है। बोलेरो की तलाशी के दौरान उसमें क्रूरतापूर्वक तीन मवेशी ठूंसकर रखे गए थे, जिन्हें बरामद कर लिया गया है। मौके से पुलिस ने दो आरोपियों को गिरफ्तार किया है, जिनकी पहचान याकूब खान और मसूद खान के रूप में हुई है। इस पूरे ऑपरेशन में ग्रामीणों की भूमिका बेहद महत्वपूर्ण रही।
पंचायत के मुखिया जवाहर कवर और अन्य स्थानीय कार्यकर्ताओं ने प्रशासन का पूरा सहयोग किया। बताया गया है कि बजरंग दल के कार्यकर्ताओं ने भी इस कार्रवाई में प्रशासन का साथ दिया। बोलेरो और मवेशियों को जब्त कर आरोपियों को पुलिस के हवाले कर दिया गया है।