Spaces:
Runtime error
Runtime error
Added Temporary Information for CPU Deployment
Browse files- main.py +52 -23
- temp/key_info.txt +43 -0
- temp/narration.txt +13 -0
- temp/sentence_level_transcript.json +1 -0
- temp/summary.txt +4 -0
- temp/word_level_transcript.json +0 -0
main.py
CHANGED
@@ -95,10 +95,21 @@ async def get_transcript(request: Request, subtitle_format: str = 'srt', word_le
|
|
95 |
if media_type == 'video':
|
96 |
media_path = users_context[user_ip]['downloader'].extract_audio(media_path)
|
97 |
|
98 |
-
# Whisper based transcription
|
99 |
-
stable_whisper_transcript = StableWhisper(media_path, output_folder, subtitle_format=subtitle_format, word_level=word_level)
|
100 |
-
transcript = stable_whisper_transcript.generate_transcript()
|
101 |
-
transcript_path = stable_whisper_transcript.save_transcript()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
# Getting Status
|
104 |
status = 1 if transcript else 0
|
@@ -123,15 +134,21 @@ async def get_summary(request: Request, Summary_type: str, Summary_strategy: str
|
|
123 |
if not text_input:
|
124 |
text_input = users_context[user_ip]['transcript']
|
125 |
|
126 |
-
# Extracting Summary
|
127 |
-
summary_extractor = Extract_Summary(text_input=text_input)
|
128 |
-
output = summary_extractor.define_chain(Summary_type=Summary_type,
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
# Getting Status
|
136 |
status = 1 if output else 0
|
137 |
|
@@ -154,15 +171,21 @@ async def get_key_info(request: Request, Summary_type: str, Summary_strategy: st
|
|
154 |
if not text_input:
|
155 |
text_input = users_context[user_ip]['transcript']
|
156 |
|
157 |
-
# Extracting Summary
|
158 |
-
summary_extractor = Extract_Summary(text_input=text_input)
|
159 |
-
output = summary_extractor.define_chain(Summary_type=Summary_type,
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
# Getting Status
|
167 |
status = 1 if output else 0
|
168 |
|
@@ -184,9 +207,15 @@ async def get_narration(request: Request, Narration_style: str, text_input: str
|
|
184 |
if not text_input:
|
185 |
text_input = users_context[user_ip]['transcript']
|
186 |
|
187 |
-
# Extracting Narration
|
188 |
-
narrator = AudioBookNarration(text_input=text_input)
|
189 |
-
output = narrator.define_chain(Narration_style=Narration_style)
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
|
191 |
# Getting Status
|
192 |
status = 1 if output else 0
|
|
|
95 |
if media_type == 'video':
|
96 |
media_path = users_context[user_ip]['downloader'].extract_audio(media_path)
|
97 |
|
98 |
+
# # Whisper based transcription
|
99 |
+
# stable_whisper_transcript = StableWhisper(media_path, output_folder, subtitle_format=subtitle_format, word_level=word_level)
|
100 |
+
# transcript = stable_whisper_transcript.generate_transcript()
|
101 |
+
# transcript_path = stable_whisper_transcript.save_transcript()
|
102 |
+
|
103 |
+
temp_dir = 'temp'
|
104 |
+
if word_level:
|
105 |
+
transcript_path = os.path.join(temp_dir, 'word_level_transcript.json')
|
106 |
+
with open(transcript_path, "r") as json_file:
|
107 |
+
transcript = json.load(json_file)
|
108 |
+
else:
|
109 |
+
transcript_path = os.path.join(temp_dir, 'sentence_level_transcript.json')
|
110 |
+
with open(transcript_path, "r") as json_file:
|
111 |
+
transcript = json.load(json_file)
|
112 |
+
|
113 |
|
114 |
# Getting Status
|
115 |
status = 1 if transcript else 0
|
|
|
134 |
if not text_input:
|
135 |
text_input = users_context[user_ip]['transcript']
|
136 |
|
137 |
+
# # Extracting Summary
|
138 |
+
# summary_extractor = Extract_Summary(text_input=text_input)
|
139 |
+
# output = summary_extractor.define_chain(Summary_type=Summary_type,
|
140 |
+
# Summary_strategy=Summary_strategy,
|
141 |
+
# Target_Person_type=Target_Person_type,
|
142 |
+
# Response_length=Response_length,
|
143 |
+
# Writing_style=Writing_style,
|
144 |
+
# key_information=False)
|
145 |
|
146 |
+
temp_dir = 'temp'
|
147 |
+
file_path = os.path.join(temp_dir, 'summary.txt')
|
148 |
+
with open(file_path, 'r') as file:
|
149 |
+
output = file.read()
|
150 |
+
|
151 |
+
|
152 |
# Getting Status
|
153 |
status = 1 if output else 0
|
154 |
|
|
|
171 |
if not text_input:
|
172 |
text_input = users_context[user_ip]['transcript']
|
173 |
|
174 |
+
# # Extracting Summary
|
175 |
+
# summary_extractor = Extract_Summary(text_input=text_input)
|
176 |
+
# output = summary_extractor.define_chain(Summary_type=Summary_type,
|
177 |
+
# Summary_strategy=Summary_strategy,
|
178 |
+
# Target_Person_type=Target_Person_type,
|
179 |
+
# Response_length=Response_length,
|
180 |
+
# Writing_style=Writing_style,
|
181 |
+
# key_information=True)
|
182 |
|
183 |
+
temp_dir = 'temp'
|
184 |
+
file_path = os.path.join(temp_dir, 'key_info.txt')
|
185 |
+
with open(file_path, 'r') as file:
|
186 |
+
output = file.read()
|
187 |
+
|
188 |
+
|
189 |
# Getting Status
|
190 |
status = 1 if output else 0
|
191 |
|
|
|
207 |
if not text_input:
|
208 |
text_input = users_context[user_ip]['transcript']
|
209 |
|
210 |
+
# # Extracting Narration
|
211 |
+
# narrator = AudioBookNarration(text_input=text_input)
|
212 |
+
# output = narrator.define_chain(Narration_style=Narration_style)
|
213 |
+
|
214 |
+
temp_dir = 'temp'
|
215 |
+
file_path = os.path.join(temp_dir, 'narration.txt')
|
216 |
+
with open(file_path, 'r') as file:
|
217 |
+
output = file.read()
|
218 |
+
|
219 |
|
220 |
# Getting Status
|
221 |
status = 1 if output else 0
|
temp/key_info.txt
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
People Names & their Role/rank:
|
2 |
+
|
3 |
+
Plato - Philosopher
|
4 |
+
Socrates - Philosopher
|
5 |
+
Al-Farabi - Author of "Kitab al-Musiq al-Kabir"
|
6 |
+
|
7 |
+
Locations:
|
8 |
+
|
9 |
+
The Republic - A reference to a philosophical work by Plato.
|
10 |
+
|
11 |
+
Religions:
|
12 |
+
|
13 |
+
Islam
|
14 |
+
|
15 |
+
Events:
|
16 |
+
|
17 |
+
Tension between ulema and music in Islam.
|
18 |
+
Historical reference to the ancient Greeks' views on music.
|
19 |
+
Mention of the demon's use of music to lure people.
|
20 |
+
|
21 |
+
Products:
|
22 |
+
|
23 |
+
"Kitab al-Musiq al-Kabir" - A book on the science of music.
|
24 |
+
|
25 |
+
Date & Time:
|
26 |
+
|
27 |
+
No specific date or time mentioned.
|
28 |
+
|
29 |
+
Nationalities:
|
30 |
+
|
31 |
+
Not mentioned.
|
32 |
+
|
33 |
+
Organizations:
|
34 |
+
|
35 |
+
No specific organizations mentioned.
|
36 |
+
|
37 |
+
Address & Email:
|
38 |
+
|
39 |
+
No specific addresses or emails mentioned.
|
40 |
+
|
41 |
+
URL:
|
42 |
+
|
43 |
+
No URLs mentioned.
|
temp/narration.txt
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
In the realm of television, films, and music, there exists a fascinating facet of Islam, one characterized by the complex relationship between the scholars, known as the ulema, and the world of music. It's a nuanced terrain where making sweeping declarations is fraught with difficulty. If we delve into the writings of Shawkani and Nail al-Awtaar, we find discussions and debates surrounding this very issue, reflecting the divergence of opinions that prevailed.
|
2 |
+
|
3 |
+
The luminaries of Islamic scholarship, figures like Imam al-Ghazali and Abdel Ghani al-Nabulusi, have dedicated sections to the subject of "sama'," a sacred form of music deemed virtuous and permissible by some. However, the ulema held a cautious stance towards music, cognizant of its potent and seductive sway over the human soul. This concern finds its roots as far back as ancient Greece, where Plato, in his "Republic," employed the voice of Socrates to outlaw specific forms of music due to their perceived harm to the soul.
|
4 |
+
|
5 |
+
This leads us to the "ethos theory," an exploration of music's profound impact. Al-Farabi, the author of the monumental "Kitab al-Musiq al-Kabir," or the "Great Book of Music," occupies a central place in this narrative. His book, an imposing tome that resides in my personal library, represents one of the earliest and most earnest endeavors to delve into the science of music.
|
6 |
+
|
7 |
+
Al-Farabi's reputation extended beyond his written words. He possessed the remarkable ability to elicit laughter, tears, drowsiness, or excitement through the maqams he skillfully played on the oud. His capacity to move people to tears finds ample documentation. It mirrors the experiences of contemporary concertgoers who, captivated by the music's influence, become immersed in its rhythm. Music, it seems, possesses both angelic and demonic effects.
|
8 |
+
|
9 |
+
The ulema, recognizing the latter, expressed their concerns about the corrupting influence of certain sounds. They understood that throughout history, demons have harnessed music as a lure to divert individuals from the righteous path. An illustrative anecdote involves the Prophet Dawud (peace be upon him), renowned for his melodious psalms. Though his singing was musical, it carried an angelic quality. Nevertheless, the devil, Shaytan, cunningly assembled a musical ensemble by the roadside. Passersby, en route to listen to Dawud, succumbed to the allure of Shaytan's band, momentarily forgetting the presence of the esteemed prophet.
|
10 |
+
|
11 |
+
This tension within Islamic scholarship persists as a crucial safeguard. It prevents hasty and absolute judgments regarding the permissibility or prohibition of music. In stark contrast, the Western world showcases a different reality where music reigns supreme. People remain perpetually plugged into their auditory worlds, whether in their cars, with earphones during walks, or within the realm of never-ending playlists. Such immersive soundscapes leave little room for contemplation, prompting us to ponder the immense arsenal of tools wielded by the demonic forces, and the unfortunate underutilization of these tools by the advocates of Truth.
|
12 |
+
|
13 |
+
In the grand scheme of things, Allah reminds us to respond in kind to the challenges we face: "Fight with the tools that you're being fought with." In the contemporary landscape, the battlefield shifts to the realm of the mind and, by extension, the heart. It is here, between the ears, that the modern jihad unfolds—an arena where thoughts and beliefs engage in a relentless struggle for dominance.
|
temp/sentence_level_transcript.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"text": " The other aspect is the television and films and music. One of the interesting things about Islam is the tension that the ulema had with music. Nobody can make a blanket statement that it's mujma'ali. If you read Shawkani and Nail al-Awtaar, he has a section on this and talks about the khilaf that existed about music. The scholars have sections about sama' which is a sacred type of music that they thought was a good thing and permissible. But the ulema were very wary of music because they understood how powerful music is, and how seductive it is, and the effects that it has on the soul. This actually goes back to the ancient Greeks. Plato in the Republic, Socrates is the voice that he uses. He actually outlaws certain types of music in the Republic because they were so harmful to the soul. Ethos theory is the theory of the effect that music has. In fact, Al-Farabi who wrote Kitab al-Musiq al-Kabir, the big book of music, which I have in my library, it's a huge book, very heavy. It's one of the earliest serious works on the science of music. He was known for being able to make people laugh, cry, become sleepy, or become excited based on maqams that he would play on the oud. He could literally make people cry. And this is well recorded. And this is what you find when people go to concerts. They get very agitated, they have to move. They don't know why, but they have to move. There's demonic effects that sounds have, and then there's angelic effects that sounds have. And so the ulema were very concerned about the demonic effects of sound. And they understood that one of the things that the demons have always used is music to lure people away. In fact, in the hadith about Dawud, peace be upon him, who sang the psalms, it was not a spiritual, but it was angelic. Shaytan got a little band together, and he put it on the side of the road, and the people on their way to hear Dawud would stop and listen to the band of Shaytan, and they would forget about Dawud. And so this was the tension that the ulema had, and it's very important that that tension exists, because nobody can make a blanket statement that music is entirely haram, and nobody can make a blanket statement that it's halal. And the Muslims never go too far into that thing, because now you see in the west, people listen to music all the time, they have no, they're always plugged in. They get in their car, they turn on the music. They walk, they put in their earphones, and they listen to their music, and people have long playlists, they spend a lot of money on these things, and so they're lost, they don't have free time to think anymore, because their lives are filled with sound. That they've never had before, and they're using them very effectively. And we're, unfortunately, the people of Haqq, are not using them effectively at all. And Allah says, Fight with the tools that you're being fought with. The jihad of this age is between the ears. The jihad of this age is between the ears. The battlefield is the mind of human beings, and by extension, the heart.", "segments": [{"start": 0.0, "end": 6.0, "text": " The other aspect is the television and films and music.", "seek": 0.0, "tokens": [50364, 440, 661, 4171, 307, 264, 8815, 293, 7796, 293, 1318, 13, 50664], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996, "id": 0}, {"start": 6.0, "end": 12.0, "text": " One of the interesting things about Islam is the tension that the ulema had with music.", "seek": 0.0, "tokens": [50664, 1485, 295, 264, 1880, 721, 466, 8571, 307, 264, 8980, 300, 264, 344, 306, 1696, 632, 365, 1318, 13, 50964], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996, "id": 1}, {"start": 12.0, "end": 17.0, "text": " Nobody can make a blanket statement that it's mujma'ali.", "seek": 0.0, "tokens": [50964, 9297, 393, 652, 257, 17907, 5629, 300, 309, 311, 30008, 1696, 6, 5103, 13, 51214], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996, "id": 2}, {"start": 17.0, "end": 26.0, "text": " If you read Shawkani and Nail al-Awtaar, he has a section on this and talks about the khilaf that existed about music.", "seek": 0.0, "tokens": [51214, 759, 291, 1401, 27132, 74, 3782, 293, 426, 864, 419, 12, 32, 86, 1328, 289, 11, 415, 575, 257, 3541, 322, 341, 293, 6686, 466, 264, 7168, 388, 2792, 300, 13135, 466, 1318, 13, 51664], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996, "id": 3}, {"start": 30.0, "end": 38.18, "text": " The scholars have sections about sama' which is a sacred type of music that they thought was a good thing and permissible.", "seek": 30.0, "tokens": [50364, 440, 8553, 362, 10863, 466, 17768, 6, 597, 307, 257, 15757, 2010, 295, 1318, 300, 436, 1194, 390, 257, 665, 551, 293, 4784, 41073, 13, 50814], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304, "id": 4}, {"start": 39.0, "end": 46.0, "text": " But the ulema were very wary of music because they understood how powerful music is,", "seek": 30.0, "tokens": [50814, 583, 264, 344, 306, 1696, 645, 588, 46585, 295, 1318, 570, 436, 7320, 577, 4005, 1318, 307, 11, 51164], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304, "id": 5}, {"start": 46.0, "end": 50.0, "text": " and how seductive it is, and the effects that it has on the soul.", "seek": 30.0, "tokens": [51164, 293, 577, 9643, 11130, 488, 309, 307, 11, 293, 264, 5065, 300, 309, 575, 322, 264, 5133, 13, 51364], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304, "id": 6}, {"start": 50.0, "end": 53.0, "text": " This actually goes back to the ancient Greeks.", "seek": 30.0, "tokens": [51364, 639, 767, 1709, 646, 281, 264, 7832, 31029, 13, 51514], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304, "id": 7}, {"start": 53.0, "end": 58.0, "text": " Plato in the Republic, Socrates is the voice that he uses.", "seek": 30.0, "tokens": [51514, 43027, 294, 264, 5564, 11, 407, 50243, 307, 264, 3177, 300, 415, 4960, 13, 51764], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304, "id": 8}, {"start": 60.0, "end": 67.0, "text": " He actually outlaws certain types of music in the Republic because they were so harmful to the soul.", "seek": 60.0, "tokens": [50364, 634, 767, 484, 33476, 1629, 3467, 295, 1318, 294, 264, 5564, 570, 436, 645, 370, 19727, 281, 264, 5133, 13, 50714], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756, "id": 9}, {"start": 67.0, "end": 71.0, "text": " Ethos theory is the theory of the effect that music has.", "seek": 60.0, "tokens": [50714, 10540, 329, 5261, 307, 264, 5261, 295, 264, 1802, 300, 1318, 575, 13, 50914], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756, "id": 10}, {"start": 71.0, "end": 79.0, "text": " In fact, Al-Farabi who wrote Kitab al-Musiq al-Kabir, the big book of music,", "seek": 60.0, "tokens": [50914, 682, 1186, 11, 967, 12, 37, 289, 18884, 567, 4114, 23037, 455, 419, 12, 22088, 72, 80, 419, 12, 42, 455, 347, 11, 264, 955, 1446, 295, 1318, 11, 51314], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756, "id": 11}, {"start": 79.0, "end": 83.0, "text": " which I have in my library, it's a huge book, very heavy.", "seek": 60.0, "tokens": [51314, 597, 286, 362, 294, 452, 6405, 11, 309, 311, 257, 2603, 1446, 11, 588, 4676, 13, 51514], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756, "id": 12}, {"start": 83.0, "end": 89.0, "text": " It's one of the earliest serious works on the science of music.", "seek": 60.0, "tokens": [51514, 467, 311, 472, 295, 264, 20573, 3156, 1985, 322, 264, 3497, 295, 1318, 13, 51814], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756, "id": 13}, {"start": 90.0, "end": 103.0, "text": " He was known for being able to make people laugh, cry, become sleepy, or become excited based on maqams that he would play on the oud.", "seek": 90.0, "tokens": [50364, 634, 390, 2570, 337, 885, 1075, 281, 652, 561, 5801, 11, 3305, 11, 1813, 24908, 11, 420, 1813, 2919, 2361, 322, 463, 80, 4070, 300, 415, 576, 862, 322, 264, 220, 1861, 13, 51014], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599, "id": 14}, {"start": 104.04, "end": 106.0, "text": " He could literally make people cry.", "seek": 90.0, "tokens": [51014, 634, 727, 3736, 652, 561, 3305, 13, 51164], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599, "id": 15}, {"start": 106.0, "end": 107.36, "text": " And this is well recorded.", "seek": 90.0, "tokens": [51164, 400, 341, 307, 731, 8287, 13, 51264], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599, "id": 16}, {"start": 108.66, "end": 112.0, "text": " And this is what you find when people go to concerts.", "seek": 90.0, "tokens": [51264, 400, 341, 307, 437, 291, 915, 562, 561, 352, 281, 24924, 13, 51464], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599, "id": 17}, {"start": 112.0, "end": 115.0, "text": " They get very agitated, they have to move.", "seek": 90.0, "tokens": [51464, 814, 483, 588, 623, 18266, 11, 436, 362, 281, 1286, 13, 51614], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599, "id": 18}, {"start": 115.0, "end": 117.0, "text": " They don't know why, but they have to move.", "seek": 90.0, "tokens": [51614, 814, 500, 380, 458, 983, 11, 457, 436, 362, 281, 1286, 13, 51714], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599, "id": 19}, {"start": 120.0, "end": 127.0, "text": " There's demonic effects that sounds have, and then there's angelic effects that sounds have.", "seek": 120.0, "tokens": [50364, 821, 311, 41297, 5065, 300, 3263, 362, 11, 293, 550, 456, 311, 14250, 299, 5065, 300, 3263, 362, 13, 50714], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885, "id": 20}, {"start": 127.0, "end": 133.0, "text": " And so the ulema were very concerned about the demonic effects of sound.", "seek": 120.0, "tokens": [50714, 400, 370, 264, 344, 306, 1696, 645, 588, 5922, 466, 264, 41297, 5065, 295, 1626, 13, 51014], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885, "id": 21}, {"start": 134.08, "end": 141.0, "text": " And they understood that one of the things that the demons have always used is music to lure people away.", "seek": 120.0, "tokens": [51014, 400, 436, 7320, 300, 472, 295, 264, 721, 300, 264, 19733, 362, 1009, 1143, 307, 1318, 281, 32350, 561, 1314, 13, 51414], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885, "id": 22}, {"start": 141.0, "end": 146.34, "text": " In fact, in the hadith about Dawud, peace be upon him, who sang the psalms,", "seek": 120.0, "tokens": [51414, 682, 1186, 11, 294, 264, 632, 355, 466, 28407, 532, 11, 4336, 312, 3564, 796, 11, 567, 9980, 264, 280, 15142, 2592, 11, 51714], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885, "id": 23}, {"start": 150.0, "end": 153.0, "text": " it was not a spiritual, but it was angelic.", "seek": 150.0, "tokens": [50364, 309, 390, 406, 257, 6960, 11, 457, 309, 390, 14250, 299, 13, 50514], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 24}, {"start": 153.46, "end": 158.0, "text": " Shaytan got a little band together, and he put it on the side of the road,", "seek": 150.0, "tokens": [50514, 31212, 20356, 658, 257, 707, 4116, 1214, 11, 293, 415, 829, 309, 322, 264, 1252, 295, 264, 3060, 11, 50764], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 25}, {"start": 158.0, "end": 162.78, "text": " and the people on their way to hear Dawud would stop and listen to the band of Shaytan,", "seek": 150.0, "tokens": [50764, 293, 264, 561, 322, 641, 636, 281, 1568, 28407, 532, 576, 1590, 293, 2140, 281, 264, 4116, 295, 31212, 20356, 11, 51014], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 26}, {"start": 163.0, "end": 166.0, "text": " and they would forget about Dawud.", "seek": 150.0, "tokens": [51014, 293, 436, 576, 2870, 466, 28407, 532, 13, 51164], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 27}, {"start": 166.0, "end": 170.0, "text": " And so this was the tension that the ulema had, and it's very important that that tension exists,", "seek": 150.0, "tokens": [51164, 400, 370, 341, 390, 264, 8980, 300, 264, 344, 306, 1696, 632, 11, 293, 309, 311, 588, 1021, 300, 300, 8980, 8198, 11, 51364], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 28}, {"start": 170.08, "end": 175.0, "text": " because nobody can make a blanket statement that music is entirely haram,", "seek": 150.0, "tokens": [51364, 570, 5079, 393, 652, 257, 17907, 5629, 300, 1318, 307, 7696, 2233, 335, 11, 51614], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 29}, {"start": 175.0, "end": 178.0, "text": " and nobody can make a blanket statement that it's halal.", "seek": 150.0, "tokens": [51614, 293, 5079, 393, 652, 257, 17907, 5629, 300, 309, 311, 7523, 304, 13, 51764], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419, "id": 30}, {"start": 180.0, "end": 185.0, "text": " And the Muslims never go too far into that thing, because now you see in the west,", "seek": 180.0, "tokens": [50364, 400, 264, 14793, 1128, 352, 886, 1400, 666, 300, 551, 11, 570, 586, 291, 536, 294, 264, 7009, 11, 50614], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 31}, {"start": 185.46, "end": 189.0, "text": " people listen to music all the time, they have no, they're always plugged in.", "seek": 180.0, "tokens": [50614, 561, 2140, 281, 1318, 439, 264, 565, 11, 436, 362, 572, 11, 436, 434, 1009, 25679, 294, 13, 50814], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 32}, {"start": 189.0, "end": 190.84, "text": " They get in their car, they turn on the music.", "seek": 180.0, "tokens": [50814, 814, 483, 294, 641, 1032, 11, 436, 1261, 322, 264, 1318, 13, 50914], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 33}, {"start": 191.0, "end": 195.0, "text": " They walk, they put in their earphones, and they listen to their music,", "seek": 180.0, "tokens": [50914, 814, 1792, 11, 436, 829, 294, 641, 1273, 9142, 11, 293, 436, 2140, 281, 641, 1318, 11, 51114], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 34}, {"start": 195.0, "end": 199.0, "text": " and people have long playlists, they spend a lot of money on these things,", "seek": 180.0, "tokens": [51114, 293, 561, 362, 938, 862, 36693, 11, 436, 3496, 257, 688, 295, 1460, 322, 613, 721, 11, 51314], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 35}, {"start": 199.0, "end": 204.0, "text": " and so they're lost, they don't have free time to think anymore,", "seek": 180.0, "tokens": [51314, 293, 370, 436, 434, 2731, 11, 436, 500, 380, 362, 1737, 565, 281, 519, 3602, 11, 51564], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 36}, {"start": 204.0, "end": 206.0, "text": " because their lives are filled with sound.", "seek": 180.0, "tokens": [51564, 570, 641, 2909, 366, 6412, 365, 1626, 13, 51664], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833, "id": 37}, {"start": 210.0, "end": 215.0, "text": " That they've never had before, and they're using them very effectively.", "seek": 210.0, "tokens": [50364, 663, 436, 600, 1128, 632, 949, 11, 293, 436, 434, 1228, 552, 588, 8659, 13, 50614], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174, "id": 38}, {"start": 215.3, "end": 221.0, "text": " And we're, unfortunately, the people of Haqq, are not using them effectively at all.", "seek": 210.0, "tokens": [50614, 400, 321, 434, 11, 7015, 11, 264, 561, 295, 4064, 80, 80, 11, 366, 406, 1228, 552, 8659, 412, 439, 13, 50914], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174, "id": 39}, {"start": 221.0, "end": 222.0, "text": " And Allah says,", "seek": 210.0, "tokens": [50914, 400, 4574, 1619, 11, 50964], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174, "id": 40}, {"start": 226.0, "end": 229.0, "text": " Fight with the tools that you're being fought with.", "seek": 210.0, "tokens": [51164, 12371, 365, 264, 3873, 300, 291, 434, 885, 11391, 365, 13, 51314], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174, "id": 41}, {"start": 229.0, "end": 234.0, "text": " The jihad of this age is between the ears.", "seek": 210.0, "tokens": [51314, 440, 361, 43837, 295, 341, 3205, 307, 1296, 264, 8798, 13, 51564], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174, "id": 42}, {"start": 234.0, "end": 238.0, "text": " The jihad of this age is between the ears.", "seek": 210.0, "tokens": [51564, 440, 361, 43837, 295, 341, 3205, 307, 1296, 264, 8798, 13, 51764], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174, "id": 43}, {"start": 240.0, "end": 245.0, "text": " The battlefield is the mind of human beings, and by extension, the heart.", "seek": 240.0, "tokens": [50364, 440, 21818, 307, 264, 1575, 295, 1952, 8958, 11, 293, 538, 10320, 11, 264, 1917, 13, 50614], "temperature": 0.0, "avg_logprob": -0.30678171860544307, "compression_ratio": 1.0138888888888888, "no_speech_prob": 0.7858298420906067, "id": 44}], "language": "en", "ori_dict": {"text": " The other aspect is the television and films and music. One of the interesting things about Islam is the tension that the ulema had with music. Nobody can make a blanket statement that it's mujma'ali. If you read Shawkani and Nail al-Awtaar, he has a section on this and talks about the khilaf that existed about music. The scholars have sections about sama' which is a sacred type of music that they thought was a good thing and permissible. But the ulema were very wary of music because they understood how powerful music is, and how seductive it is, and the effects that it has on the soul. This actually goes back to the ancient Greeks. Plato in the Republic, Socrates is the voice that he uses. He actually outlaws certain types of music in the Republic because they were so harmful to the soul. Ethos theory is the theory of the effect that music has. In fact, Al-Farabi who wrote Kitab al-Musiq al-Kabir, the big book of music, which I have in my library, it's a huge book, very heavy. It's one of the earliest serious works on the science of music. He was known for being able to make people laugh, cry, become sleepy, or become excited based on maqams that he would play on the oud. He could literally make people cry. And this is well recorded. And this is what you find when people go to concerts. They get very agitated, they have to move. They don't know why, but they have to move. There's demonic effects that sounds have, and then there's angelic effects that sounds have. And so the ulema were very concerned about the demonic effects of sound. And they understood that one of the things that the demons have always used is music to lure people away. In fact, in the hadith about Dawud, peace be upon him, who sang the psalms, it was not a spiritual, but it was angelic. Shaytan got a little band together, and he put it on the side of the road, and the people on their way to hear Dawud would stop and listen to the band of Shaytan, and they would forget about Dawud. And so this was the tension that the ulema had, and it's very important that that tension exists, because nobody can make a blanket statement that music is entirely haram, and nobody can make a blanket statement that it's halal. And the Muslims never go too far into that thing, because now you see in the west, people listen to music all the time, they have no, they're always plugged in. They get in their car, they turn on the music. They walk, they put in their earphones, and they listen to their music, and people have long playlists, they spend a lot of money on these things, and so they're lost, they don't have free time to think anymore, because their lives are filled with sound. That they've never had before, and they're using them very effectively. And we're, unfortunately, the people of Haqq, are not using them effectively at all. And Allah says, Fight with the tools that you're being fought with. The jihad of this age is between the ears. The jihad of this age is between the ears. The battlefield is the mind of human beings, and by extension, the heart.", "segments": [{"id": 0, "start": 0.0, "end": 6.0, "text": " The other aspect is the television and films and music.", "seek": 0.0, "tokens": [50364, 440, 661, 4171, 307, 264, 8815, 293, 7796, 293, 1318, 13, 50664], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996}, {"id": 1, "start": 6.0, "end": 12.0, "text": " One of the interesting things about Islam is the tension that the ulema had with music.", "seek": 0.0, "tokens": [50664, 1485, 295, 264, 1880, 721, 466, 8571, 307, 264, 8980, 300, 264, 344, 306, 1696, 632, 365, 1318, 13, 50964], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996}, {"id": 2, "start": 12.0, "end": 17.0, "text": " Nobody can make a blanket statement that it's mujma'ali.", "seek": 0.0, "tokens": [50964, 9297, 393, 652, 257, 17907, 5629, 300, 309, 311, 30008, 1696, 6, 5103, 13, 51214], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996}, {"id": 3, "start": 17.0, "end": 26.0, "text": " If you read Shawkani and Nail al-Awtaar, he has a section on this and talks about the khilaf that existed about music.", "seek": 0.0, "tokens": [51214, 759, 291, 1401, 27132, 74, 3782, 293, 426, 864, 419, 12, 32, 86, 1328, 289, 11, 415, 575, 257, 3541, 322, 341, 293, 6686, 466, 264, 7168, 388, 2792, 300, 13135, 466, 1318, 13, 51664], "temperature": 0.0, "avg_logprob": -0.3615281798622825, "compression_ratio": 1.5714285714285714, "no_speech_prob": 0.007505820132791996}, {"id": 4, "start": 30.0, "end": 38.18, "text": " The scholars have sections about sama' which is a sacred type of music that they thought was a good thing and permissible.", "seek": 30.0, "tokens": [50364, 440, 8553, 362, 10863, 466, 17768, 6, 597, 307, 257, 15757, 2010, 295, 1318, 300, 436, 1194, 390, 257, 665, 551, 293, 4784, 41073, 13, 50814], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304}, {"id": 5, "start": 39.0, "end": 46.0, "text": " But the ulema were very wary of music because they understood how powerful music is,", "seek": 30.0, "tokens": [50814, 583, 264, 344, 306, 1696, 645, 588, 46585, 295, 1318, 570, 436, 7320, 577, 4005, 1318, 307, 11, 51164], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304}, {"id": 6, "start": 46.0, "end": 50.0, "text": " and how seductive it is, and the effects that it has on the soul.", "seek": 30.0, "tokens": [51164, 293, 577, 9643, 11130, 488, 309, 307, 11, 293, 264, 5065, 300, 309, 575, 322, 264, 5133, 13, 51364], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304}, {"id": 7, "start": 50.0, "end": 53.0, "text": " This actually goes back to the ancient Greeks.", "seek": 30.0, "tokens": [51364, 639, 767, 1709, 646, 281, 264, 7832, 31029, 13, 51514], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304}, {"id": 8, "start": 53.0, "end": 58.0, "text": " Plato in the Republic, Socrates is the voice that he uses.", "seek": 30.0, "tokens": [51514, 43027, 294, 264, 5564, 11, 407, 50243, 307, 264, 3177, 300, 415, 4960, 13, 51764], "temperature": 0.0, "avg_logprob": -0.2586810191472371, "compression_ratio": 1.6127659574468085, "no_speech_prob": 0.10324231535196304}, {"id": 9, "start": 60.0, "end": 67.0, "text": " He actually outlaws certain types of music in the Republic because they were so harmful to the soul.", "seek": 60.0, "tokens": [50364, 634, 767, 484, 33476, 1629, 3467, 295, 1318, 294, 264, 5564, 570, 436, 645, 370, 19727, 281, 264, 5133, 13, 50714], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756}, {"id": 10, "start": 67.0, "end": 71.0, "text": " Ethos theory is the theory of the effect that music has.", "seek": 60.0, "tokens": [50714, 10540, 329, 5261, 307, 264, 5261, 295, 264, 1802, 300, 1318, 575, 13, 50914], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756}, {"id": 11, "start": 71.0, "end": 79.0, "text": " In fact, Al-Farabi who wrote Kitab al-Musiq al-Kabir, the big book of music,", "seek": 60.0, "tokens": [50914, 682, 1186, 11, 967, 12, 37, 289, 18884, 567, 4114, 23037, 455, 419, 12, 22088, 72, 80, 419, 12, 42, 455, 347, 11, 264, 955, 1446, 295, 1318, 11, 51314], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756}, {"id": 12, "start": 79.0, "end": 83.0, "text": " which I have in my library, it's a huge book, very heavy.", "seek": 60.0, "tokens": [51314, 597, 286, 362, 294, 452, 6405, 11, 309, 311, 257, 2603, 1446, 11, 588, 4676, 13, 51514], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756}, {"id": 13, "start": 83.0, "end": 89.0, "text": " It's one of the earliest serious works on the science of music.", "seek": 60.0, "tokens": [51514, 467, 311, 472, 295, 264, 20573, 3156, 1985, 322, 264, 3497, 295, 1318, 13, 51814], "temperature": 0.0, "avg_logprob": -0.25063355152423566, "compression_ratio": 1.5822222222222222, "no_speech_prob": 0.1002623587846756}, {"id": 14, "start": 90.0, "end": 103.0, "text": " He was known for being able to make people laugh, cry, become sleepy, or become excited based on maqams that he would play on the oud.", "seek": 90.0, "tokens": [50364, 634, 390, 2570, 337, 885, 1075, 281, 652, 561, 5801, 11, 3305, 11, 1813, 24908, 11, 420, 1813, 2919, 2361, 322, 463, 80, 4070, 300, 415, 576, 862, 322, 264, 220, 1861, 13, 51014], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599}, {"id": 15, "start": 104.03999999999999, "end": 106.0, "text": " He could literally make people cry.", "seek": 90.0, "tokens": [51014, 634, 727, 3736, 652, 561, 3305, 13, 51164], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599}, {"id": 16, "start": 106.0, "end": 107.36, "text": " And this is well recorded.", "seek": 90.0, "tokens": [51164, 400, 341, 307, 731, 8287, 13, 51264], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599}, {"id": 17, "start": 108.66, "end": 112.0, "text": " And this is what you find when people go to concerts.", "seek": 90.0, "tokens": [51264, 400, 341, 307, 437, 291, 915, 562, 561, 352, 281, 24924, 13, 51464], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599}, {"id": 18, "start": 112.0, "end": 115.0, "text": " They get very agitated, they have to move.", "seek": 90.0, "tokens": [51464, 814, 483, 588, 623, 18266, 11, 436, 362, 281, 1286, 13, 51614], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599}, {"id": 19, "start": 115.0, "end": 117.0, "text": " They don't know why, but they have to move.", "seek": 90.0, "tokens": [51614, 814, 500, 380, 458, 983, 11, 457, 436, 362, 281, 1286, 13, 51714], "temperature": 0.0, "avg_logprob": -0.22982617428428248, "compression_ratio": 1.6407766990291262, "no_speech_prob": 0.326009601354599}, {"id": 20, "start": 120.0, "end": 127.0, "text": " There's demonic effects that sounds have, and then there's angelic effects that sounds have.", "seek": 120.0, "tokens": [50364, 821, 311, 41297, 5065, 300, 3263, 362, 11, 293, 550, 456, 311, 14250, 299, 5065, 300, 3263, 362, 13, 50714], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885}, {"id": 21, "start": 127.0, "end": 133.0, "text": " And so the ulema were very concerned about the demonic effects of sound.", "seek": 120.0, "tokens": [50714, 400, 370, 264, 344, 306, 1696, 645, 588, 5922, 466, 264, 41297, 5065, 295, 1626, 13, 51014], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885}, {"id": 22, "start": 134.08, "end": 141.0, "text": " And they understood that one of the things that the demons have always used is music to lure people away.", "seek": 120.0, "tokens": [51014, 400, 436, 7320, 300, 472, 295, 264, 721, 300, 264, 19733, 362, 1009, 1143, 307, 1318, 281, 32350, 561, 1314, 13, 51414], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885}, {"id": 23, "start": 141.0, "end": 146.34, "text": " In fact, in the hadith about Dawud, peace be upon him, who sang the psalms,", "seek": 120.0, "tokens": [51414, 682, 1186, 11, 294, 264, 632, 355, 466, 28407, 532, 11, 4336, 312, 3564, 796, 11, 567, 9980, 264, 280, 15142, 2592, 11, 51714], "temperature": 0.0, "avg_logprob": -0.2772430034165972, "compression_ratio": 1.70935960591133, "no_speech_prob": 0.02158440090715885}, {"id": 24, "start": 150.0, "end": 153.0, "text": " it was not a spiritual, but it was angelic.", "seek": 150.0, "tokens": [50364, 309, 390, 406, 257, 6960, 11, 457, 309, 390, 14250, 299, 13, 50514], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 25, "start": 153.46, "end": 158.0, "text": " Shaytan got a little band together, and he put it on the side of the road,", "seek": 150.0, "tokens": [50514, 31212, 20356, 658, 257, 707, 4116, 1214, 11, 293, 415, 829, 309, 322, 264, 1252, 295, 264, 3060, 11, 50764], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 26, "start": 158.0, "end": 162.78, "text": " and the people on their way to hear Dawud would stop and listen to the band of Shaytan,", "seek": 150.0, "tokens": [50764, 293, 264, 561, 322, 641, 636, 281, 1568, 28407, 532, 576, 1590, 293, 2140, 281, 264, 4116, 295, 31212, 20356, 11, 51014], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 27, "start": 163.0, "end": 166.0, "text": " and they would forget about Dawud.", "seek": 150.0, "tokens": [51014, 293, 436, 576, 2870, 466, 28407, 532, 13, 51164], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 28, "start": 166.0, "end": 170.0, "text": " And so this was the tension that the ulema had, and it's very important that that tension exists,", "seek": 150.0, "tokens": [51164, 400, 370, 341, 390, 264, 8980, 300, 264, 344, 306, 1696, 632, 11, 293, 309, 311, 588, 1021, 300, 300, 8980, 8198, 11, 51364], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 29, "start": 170.07999999999998, "end": 175.0, "text": " because nobody can make a blanket statement that music is entirely haram,", "seek": 150.0, "tokens": [51364, 570, 5079, 393, 652, 257, 17907, 5629, 300, 1318, 307, 7696, 2233, 335, 11, 51614], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 30, "start": 175.0, "end": 178.0, "text": " and nobody can make a blanket statement that it's halal.", "seek": 150.0, "tokens": [51614, 293, 5079, 393, 652, 257, 17907, 5629, 300, 309, 311, 7523, 304, 13, 51764], "temperature": 0.0, "avg_logprob": -0.271091309804765, "compression_ratio": 1.8725099601593624, "no_speech_prob": 0.5435706377029419}, {"id": 31, "start": 180.0, "end": 185.0, "text": " And the Muslims never go too far into that thing, because now you see in the west,", "seek": 180.0, "tokens": [50364, 400, 264, 14793, 1128, 352, 886, 1400, 666, 300, 551, 11, 570, 586, 291, 536, 294, 264, 7009, 11, 50614], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 32, "start": 185.46, "end": 189.0, "text": " people listen to music all the time, they have no, they're always plugged in.", "seek": 180.0, "tokens": [50614, 561, 2140, 281, 1318, 439, 264, 565, 11, 436, 362, 572, 11, 436, 434, 1009, 25679, 294, 13, 50814], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 33, "start": 189.0, "end": 190.84, "text": " They get in their car, they turn on the music.", "seek": 180.0, "tokens": [50814, 814, 483, 294, 641, 1032, 11, 436, 1261, 322, 264, 1318, 13, 50914], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 34, "start": 191.0, "end": 195.0, "text": " They walk, they put in their earphones, and they listen to their music,", "seek": 180.0, "tokens": [50914, 814, 1792, 11, 436, 829, 294, 641, 1273, 9142, 11, 293, 436, 2140, 281, 641, 1318, 11, 51114], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 35, "start": 195.0, "end": 199.0, "text": " and people have long playlists, they spend a lot of money on these things,", "seek": 180.0, "tokens": [51114, 293, 561, 362, 938, 862, 36693, 11, 436, 3496, 257, 688, 295, 1460, 322, 613, 721, 11, 51314], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 36, "start": 199.0, "end": 204.0, "text": " and so they're lost, they don't have free time to think anymore,", "seek": 180.0, "tokens": [51314, 293, 370, 436, 434, 2731, 11, 436, 500, 380, 362, 1737, 565, 281, 519, 3602, 11, 51564], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 37, "start": 204.0, "end": 206.0, "text": " because their lives are filled with sound.", "seek": 180.0, "tokens": [51564, 570, 641, 2909, 366, 6412, 365, 1626, 13, 51664], "temperature": 0.0, "avg_logprob": -0.2257596923083794, "compression_ratio": 1.8333333333333333, "no_speech_prob": 0.5654566884040833}, {"id": 38, "start": 210.0, "end": 215.0, "text": " That they've never had before, and they're using them very effectively.", "seek": 210.0, "tokens": [50364, 663, 436, 600, 1128, 632, 949, 11, 293, 436, 434, 1228, 552, 588, 8659, 13, 50614], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174}, {"id": 39, "start": 215.3, "end": 221.0, "text": " And we're, unfortunately, the people of Haqq, are not using them effectively at all.", "seek": 210.0, "tokens": [50614, 400, 321, 434, 11, 7015, 11, 264, 561, 295, 4064, 80, 80, 11, 366, 406, 1228, 552, 8659, 412, 439, 13, 50914], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174}, {"id": 40, "start": 221.0, "end": 222.0, "text": " And Allah says,", "seek": 210.0, "tokens": [50914, 400, 4574, 1619, 11, 50964], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174}, {"id": 41, "start": 226.0, "end": 229.0, "text": " Fight with the tools that you're being fought with.", "seek": 210.0, "tokens": [51164, 12371, 365, 264, 3873, 300, 291, 434, 885, 11391, 365, 13, 51314], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174}, {"id": 42, "start": 229.0, "end": 234.0, "text": " The jihad of this age is between the ears.", "seek": 210.0, "tokens": [51314, 440, 361, 43837, 295, 341, 3205, 307, 1296, 264, 8798, 13, 51564], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174}, {"id": 43, "start": 234.0, "end": 238.0, "text": " The jihad of this age is between the ears.", "seek": 210.0, "tokens": [51564, 440, 361, 43837, 295, 341, 3205, 307, 1296, 264, 8798, 13, 51764], "temperature": 0.0, "avg_logprob": -0.2274773257902299, "compression_ratio": 1.7514124293785311, "no_speech_prob": 0.7656641602516174}, {"id": 44, "start": 240.0, "end": 245.0, "text": " The battlefield is the mind of human beings, and by extension, the heart.", "seek": 240.0, "tokens": [50364, 440, 21818, 307, 264, 1575, 295, 1952, 8958, 11, 293, 538, 10320, 11, 264, 1917, 13, 50614], "temperature": 0.0, "avg_logprob": -0.30678171860544307, "compression_ratio": 1.0138888888888888, "no_speech_prob": 0.7858298420906067}], "language": "en", "time_scale": null}}
|
temp/summary.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Summary of Text: The text discusses the complex relationship between Islam and music, highlighting how Islamic scholars have historically held differing views on its permissibility. It also delves into the power of music, its effects on the soul, and its historical context, including references to ancient Greek philosophy. The text emphasizes the tension between the demonic and angelic effects of sound and the importance of maintaining a balanced approach to music in Islam.
|
2 |
+
|
3 |
+
Topic Names: Islam and Music, Islamic Scholars' Views, Power and Effects of Music
|
4 |
+
Importance Score: 1, 0.8, 0.7
|
temp/word_level_transcript.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|