generated from streamlit/ML-Model-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
38 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
در مورد وفا به عهد اجتماع قلوب بر وفائ به عهد یه سری نکاتی رو عرض کردم از یه منظر دیگه ای می خوام طرح یه بحثی کنم اینم بحثی که عرض می کنم گمانم بحث خیلی مهمیه و دامنه وحشیشم هم خیلی مفصله نمی دونم تو این یکی دو شبی که خدمت عزیزان هستم چقدرشو بتونم توضیح بدم پرونده خیلی مفصلی این پرونده مطلبی که می خوام عرض کنم و اون اینه که به عبارات مختلف این جملات رو شنیدید خیلی وقتا مطرح می شه که تکالیف ما در دوران غیبت امام زمان ع چیه مراجعه اگر بکنید به روایات و اون هایی که کتبی که در این زمینه نوشته شده چه کوچک بزرگ مسیر رفتن یه مطالبی رو بیان فرمودند نکته ای که می خوام بهش بپردازم اینه از این منظری که می خوام عرض کنم می خوایم دقت کنیم نمی خوایم بگیم آقا تکالیف ما در دوران غیبت چیست بسم اللهرحم این واجباتت را انجام بده محرماتت رو ترک کن خب جوابش ع امیده دیگه واقعا جواب اول ماجرا همینه دیگه تکالیف ما چیست انجام واجبات ترک محرمات تکلیف خاص ما در دوران غیبت چیست دعاورای فرج حضرت صرفا نمی خوایم با این دست فرمون بریم جلو می خوایام از یه زاویه ای به این قصه نگاه کنیم که شاید کم تر دقت کردیم دو سه تا جمله اول باید به عنوان مقدمه عرض کنم بعد وارد بشم و در موردش فکر کنیم ببینید ما یه وقت تکالیفمون رو به صورت فردی نگاه می کنیم تاثیره می خوام خیلی دقت کنید ببخشید مقدماتی هی دارم میگم که حواس جمع بشه تاثیر کارهامونم به صورت فردی نگاه می کنیم واقعا اگر به صورت فردی بخوایم نگاه کنیم و نسخه میپشیم همونی که عرض کردم آقا تو انجام واجبات ترک محرمات یه چیزایی توجه کن اما یه منظر دیگه ای که به نظرم خیلی مهمه و مورد غفلت ماها واقع شده اینه که من یک فرد از جامعه شیعه هستم یک نفرم از جامعه شیعه ای که در دوران غیبت امام زمان داره زندگی می کنه بلکه تا قبل از ظهور امام زمان ع از ابتدای خلقت توی حدیثی هست که حضرت می فرمایند عالم دو قسمت خلاصه به تعبیر من یه دوره دولت ابلیسه که تا پایان تا ابتدای ظهور امام زمان هیمنه و سیطره در عالم با دستگاه شیطانه یه طرف دولت آدمه دستگاه حق که از بعد از ظور اتفاق می افته به یه معنا اون چیزی که عرض می کنیم مال همه این قبل از ظهوره یعنی چه دوران غیبت امام زمان چه اون دورانی که ائمه بین مردم ظاهر بودن چه دوران خاتم ال انبیا چه قبلش |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import speech_recognition as sr | ||
|
||
def recognize_speech_from_mic(): | ||
recognizer = sr.Recognizer() | ||
mic = sr.Microphone() | ||
|
||
with mic as source: | ||
print("Adjusting for ambient noise, please wait...") | ||
recognizer.adjust_for_ambient_noise(source) | ||
print("Listening...") | ||
audio = recognizer.listen(source) | ||
|
||
try: | ||
print("Recognizing...") | ||
text = recognizer.recognize_google(audio, language="fa-IR") | ||
print("You said: " + text) | ||
except sr.UnknownValueError: | ||
print("Google Speech Recognition could not understand audio") | ||
except sr.RequestError as e: | ||
print(f"Could not request results from Google Speech Recognition service; {e}") | ||
|
||
if __name__ == "__main__": | ||
recognize_speech_from_mic() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters