Dataset Viewer
Auto-converted to Parquet Duplicate
source
stringclasses
309 values
text
stringlengths
15
368
audio
audioduration (s)
1.06
57
quality
stringclasses
1 value
duration
stringlengths
3
6
spk_00000002
<hi-en> दोस्तों bash में nested और multilevel if statement के spoken tutorial में आपका स्वागत है इस tutorial में हम निम्न के बारे में सीखेंगे
16000
9.44
spk_00000002
<hi-en> nested ifelse और multilevel ifelse statement हम यह कुछ उदाहरण उपयोग करके करेंगे इस tutorial के अनुसरण के लिए आपको लिनक्स operating system से परिचित होना चाहिए
16000
13.072
spk_00000002
<hi-en> यदि नहीं तो सम्बंधित tutorials के लिए कृपया हमारी website पर जाएँ इस tutorial के लिए मैं उपयोग कर रही हूँ ubuntu लिनक्स 1204 os और
16000
10.944
spk_00000002
<hi-en> gnu bash version 4110 अभ्यास के लिए gnu bash version 4 या उससे नए की सलाह दी जाती है
16000
9.504
spk_00000002
<hi-en> अब nested ifelse statement का flow यानी प्रवाह समझते हैं यहाँ यदि condition 1 true है तो condition 2 मूल्यांकित की जाएगी
16000
10.528
spk_00000002
<hi-en> यदि कंडीशन 2 true है तो statement 1 निष्पादित किया जाएगा जिसका मतलब है केवल जब conditions 1 और 2 दोनों true हैं that statement 1 निष्पादित किया जायेगा
16000
11.712
spk_00000002
<hi-en> यदि कंडीशन 1 false है तो statement 3 निष्पादित किया जायेगा और यदि condition 2 false है तो statement 2 निष्पादित किया जायेगा
16000
9.792
spk_00000002
<hi-en> एक उदाहरण देखते हैं मैंने nestedifelse sh file में code लिख लिया है मैं इसे खोलूंगी अब मैं code समझाती हूँ
16000
8.768
spk_00000002
<hi-en> यह शीबैंग line है variable name को value anusha नियुक्त की गयी है variable password को value abc123 नियुक्त की गयी है
16000
10.112
spk_00000002
<hi-en> read command मानक input से data की एक line को पढ़ता है hyphen p flag prompt को दिखाता है hyphen p के बाद enter name यह string terminal पर दिखाया जायेगा
16000
11.48
spk_00000002
<hi-en> myname variable है जो यूज़र के द्वारा प्रविष्ट किया गया text जोकि यूज़र input है को संचित करता है पहला if statement दो variables myname और name की तुलना करता है
16000
12.608
spk_00000002
<hi-en> यानी यूज़र input और variable name में संचित value जोकि anusha है अगर दो values मिलती हैं तो इस if statement में शेष code मूल्यांकित किया जायेगा
16000
11.072
spk_00000002
<hi-en> read command पढ़ती है और variable mypassword में प्रविष्ट किया हुआ password संचित करती है यहाँ hyphen s flag silent mode के लिए है
16000
10.84
spk_00000002
<hi-en> इसका मतलब है कि यूज़र द्वारा प्रविष्ट किया हुआ text terminal पर प्रदर्शित नहीं किया जायेगा यहाँ हमारे पास ifelse statements का एक अन्य set है
16000
9.504
spk_00000002
<hi-en> ifelse statements का यह set पहले if में nested किया जाता है दूसरा if statement variables mypassword और password की तुलना करता है
16000
10.464
spk_00000002
<hi-en> जब if condition true होती है तो echo terminal पर message welcome प्रदर्शित करता है यानी passwords मिलता है e backslash escape की व्याश्या संभव बनाता है
16000
11.008
spk_00000002
<hi-en> \n नयी line के लिए है; जिसका मतलब है string welcome printed किया जायेगा जब if condition true नहीं होती है तो else condition निष्पादित की जाएगी;
16000
11.072
spk_00000002
<hi-en> यानी जब passwords मिलान नहीं होता है तो else condition निष्पादित की जाएगी इस स्थिति में echo wrong password दिखायेगा fi भीतरी ifelse statement समाप्त करता है
16000
10.944
spk_00000002
<hi-en> अपने पहले ifelse statement पर वापस आते हैं अगर myname और name में values मिलान नहीं होती हैं तो यह else statement निष्पादित किया जायेगा
16000
10.112
spk_00000002
<hi-en> यह terminal पर message wrong name echo करेगा fi बहरी ifelse statement समाप्त करेगा अब अपने keyboard पर ctrl + alt और t कीज़ एकसाथ दबाकर terminal window खोलें
16000
12.96
spk_00000002
<hi-en> file को निष्पादन योग्य बनाते हैं type करें chmod space plus x space nestedifelse sh
16000
8.752
spk_00000002
<hi-en> अब type करें dot slash nestedifelse sh program दो conditions प्रमाणित करता है यानी name और password
16000
8.904
spk_00000002
<hi-en> जब यह terminal पर निष्पादित किया जाता है यहाँ prompt enter name निष्पादित करता है अब type करें anusha चूँकि यह condition true होती है अतः अगली if condition मूल्यांकित की जाएगी
16000
12.816
spk_00000002
<hi-en> अब prompt दिखाता है password मैं password में abc123 type करुँगी ये password variable password में value से मिलता है
16000
10.784
spk_00000002
<hi-en> इसलिए prompt message welcome दिखाता है अब script को दोबारा निष्पादित करते हैं अप arrow की दबाएं dot slash nestedifelse sh पर जाएँ
16000
11.264
spk_00000002
<hi-en> enter दबाएं इस समय हम वही name अलग password के साथ प्रविष्ट करेंगे अतः मैं name में anusha और password में 123 प्रविष्ट करुँगी
16000
11.392
spk_00000002
<hi-en> name की values मिलेंगी लेकिन password की values नहीं अतः message wrong password प्रदर्शित किया जायेगा यह सिद्ध करता है कि पहले if statement के अंदर nested else statement निष्पादित किया गया था
16000
14.976
spk_00000002
<hi-en> एक बार और script को निष्पादित करते हैं इस समय हम name में swati प्रविष्ट करेंगे message wrong name प्रदर्शित होता है
16000
8.64
spk_00000002
<hi-en> ऐसा इसलिए क्योंकि name swati पहले घोषित की गयी value anusha से नहीं मिलता control पहले if statement के बाहर आता है और else statement निष्पादित करता है
16000
10.272
spk_00000002
<hi-en> यह message wrong name prints करता है अब multilevel ifelse statement को देखते हैं अगर कंडीशन 1 true है तो statement1 1 निष्पादित होता है
16000
10.016
spk_00000002
<hi-en> अगर condition 1 false है तो condition 2 मूल्यांकित होती है अगर कंडीशन 2 true है तो statement 2 निष्पादित होता है
16000
8.704
spk_00000002
<hi-en> अगर condition 2 false है तो condition n मूल्यांकित होती है अगर condition n true है तो statement n निष्पादित होता है
16000
9.344
spk_00000002
<hi-en> और अगर condition n false है तो statement x निष्पादित होता है अब एक उदाहरण देखते हैं मेरे पास एक कार्यकारी उदाहरण है
16000
8.368
spk_00000002
<hi-en> मैं इसे खोलूंगी ध्यान दें हमारी फाइल का name multilevel hyphen ifelse dot sh है अब code पूरा समझते हैं
16000
9.6
spk_00000002
<hi-en> यह शीबैंग line है mystring एक variable है जो निष्पादन के दौरान यूज़र द्वारा input शब्द संचित करता है
16000
8.032
spk_00000002
<hi-en> if condition जाँचती है कि the input string नल null है hyphen z जाँचता है कि क्या string की लम्बाई zero है terminal पर type करें man test और अनेक string comparison का अन्वेषण करें
16000
14.752
spk_00000002
<hi-en> अगर कुछ भी प्रविष्ट नहीं किया जाता तो echo statement printed किया जायेगा पहली elif condition जाँचती है कि the input string में raj है
16000
8.928
spk_00000002
<hi-en> अगर है तो यह echo statement printed किया जायेगा वाइल्ड कार्ड्स character निश्चित करता है कि इसमें raj के साथ कोई भी शब्द पहचाना जाएगा
16000
9.632
spk_00000002
<hi-en> अगली elif condition जाँचती है कि the input string में शब्द jit है अगर है तो यह echo statement printed किया जायेगा
16000
8.64
spk_00000002
<hi-en> जब ऊपर की सारी conditions fail हो जाएँगी तो else condition निष्पादित की जाएगी और यह sorry input does not contain either raj or jit message दिखायेगा
16000
12.832
spk_00000002
<hi-en> fi multilevel ifelse statement का अंत दिखाता है अब program निष्पादित करते हैं अपने terminal पर वापस आते हैं type करें chmod space plus x space multilevel hyphen ifelse dot sh
16000
15.488
spk_00000002
<hi-en> type करें dot slash multilevel hyphen ifelse dot sh हमसे input के लिए पूछा जाता है अब हम भिन्नभिन्न inputs देते हैं और देखते हैं कि हर बार क्या होता है
16000
11.2
spk_00000002
<hi-en> पहले मैं बिना कुछ टाइप किये enter दबाऊँगी nothing was entered message दिखता है और control multilevel ifelse statement के बाहर आ जाता है
16000
9.792
spk_00000002
<hi-en> अब मैं prompt clear करती हूँ अब script को भिन्न input के साथ निष्पादित करने की कोशिश करते हैं अप arrow की दबाएं dot slash multilevel hyphen ifelse dot sh पर जाएँ
16000
11.52
spk_00000002
<hi-en> enter दबाएं prompt enter a word दिखाता है मैं abhijit type करुँगी abhijit contains word jit output दिखता है
16000
10.672
spk_00000002
<hi-en> यह दिखाता है कि हमारे code में control तीसरी condition पर गया पहली दो conditions मेल नहीं हुई वहीं logic सारी conditions पर लगता है
16000
8.544
spk_00000002
<hi-en> भिन्नभिन्न inputs के लिए program को निष्पादित करने की कोशिश करें और परिणामों को जाँचें अब सारांशित करते हैं इस tutorial में हमने सीखा
16000
8.992
spk_00000002
<hi-en> name और password सत्यापन के साथ nested ifelse का उपयोग और multilevel ifelse string comparison program का उपयोग
16000
9.32
spk_00000002
<hi-en> एक नियत कार्य में भिन्नभिन्न output के लिए एक program लिखें जब number 3 से बड़ा हो 3 से छोटा हो या 3 के बराबर हो
16000
9.28
spk_00000002
<hi-en> या जब यूज़र input खाली हो निम्न link पर उपलब्ध video देखें यह spoken tutorial project को सारांशित करता है अच्छी bandwidth न मिलने पर आप इसे download करके देख सकते हैं
16000
10.816
spk_00000002
<hi-en> spoken tutorial project team spoken tutorials का उपयोग करके कार्यशालाएं चालती है online test pass करने वालों को प्रमाणपत्र देते हैं
16000
8.776
spk_00000002
<hi-en> अधिक जानकारी के लिए contact @spokentutorial org पर लिखें spoken tutorial project talk to a teacher project का हिस्सा है
16000
9.888
spk_00000002
<hi-en> यह भारत सरकार के it it आर दी के आई सी टी के माध्यम से राष्ट्रीय साक्षरता mission द्वारा समर्थित है इस mission पर अधिक जानकारी नीचे दर्शाये link पर उपलब्ध है
16000
11.416
spk_00000002
<hi-en> यह script प्रभाकर द्वारा अनुवादित है आई आई टी बॉम्बे से मैं श्रुति आर्य अब आपसे विदा लेती हूँ हमसे जुड़ने धन्यवाद
16000
9.832
spk_00000003
<hi-en> नमस्कार features of gchem3d के इस tutorial में आपका स्वागत है इस tutorial में हम निम्न के बारे में सीखेंगे menu bar file type formats
16000
9.912
spk_00000003
<hi-en> अनेक प्रकार के model types और background color को कैसे बदलें इस tutorial के लिए मैं उपयोग कर रही हूँ ubuntu लिनक्स os version 1204
16000
9.52
spk_00000003
<hi-en> gchempaint version 01210 gchem3d version 01210
16000
8.552
spk_00000003
<hi-en> इस tutorial के अनुसरण के लिए आपको gchempaint से परिचित होना चाहिये यदि नहीं तो सम्बंधित tutorials के लिए कृपया हमारी website पर जाएँ
16000
9.968
spk_00000003
<hi-en> मैंने एक नयी gchempaint window खोली है templates drop down उपयोग करके मैं display area पर adenosine adenosine के structure को load करुँगी
16000
8.624
spk_00000003
<hi-en> file को सेव करने के लिए tool bar पर सेव icon पर click करें save as dialog box खुलता है
16000
8.744
spk_00000003
<hi-en> file को gchem3d में देखने के लिए इसे file formats जैसे mol mdl और pdb में सेव करना पड़ता है
16000
8.992
spk_00000003
<hi-en> file का name adenosine pdb type करें desktop पर file सेव करने के लिए desktop पर click करें सेव button पर click करें
16000
9.752
spk_00000003
<hi-en> मैं gchempaint window बंद करुँगी अब gchem3d application के बारे में सीखें gchem3d gchempaint के utility सॉफ्टवेयर की तरह संस्थापित किया जा सकता है
16000
10.504
spk_00000003
<hi-en> synaptic package manager उपयोग करके synaptic package manager synaptic package manager पर जाएँ quick filter quick filter box में gchempaint type करें
16000
9.248
spk_00000003
<hi-en> gchempaint utilities के पूर्ण संस्थापन के लिए gcuplugin libgcudbg और gcubin संस्थापित करें
16000
10.4
spk_00000003
<hi-en> मैंने पहले ही सारी files संस्थापित कर ली थी gchem3d 3 डाइमेंशनल मॉलिक्यूलर structure विज्युलाइज़र visualizer है यह gchempaint का utility feature है
16000
10.432
spk_00000003
<hi-en> gchempaint में बनाये गए structures gchem3d में देखे जा सकते हैं gchem3d खोलने के लिए dash home पर click करें प्रदर्शित search bar में gchem3d type करें
16000
10.816
spk_00000003
<hi-en> molecules viewer icon पर click करें gchem3d viewer window menubar और display area रखती है
16000
8.464
spk_00000003
<hi-en> menubar वो सभी commands रखती है जिनकी आपको gchem3d में काम करने में ज़रुरत है display area खुली हुई file की विषयवस्तु प्रदर्शित करता है
16000
9.792
spk_00000003
<hi-en> file खोलने के लिए file select करें open पर click करें open dialog box खुलता है file select करे जो आप खोलना चाहते हैं
16000
8.32
spk_00000003
<hi-en> मैं अपने desktop पर adenosine pdb select करुँगी open button पर click करें displayed area पर file प्रदर्शित हुई है
16000
9.128
spk_00000003
<hi-en> अब दृश्य को image की तरह सेव करना सीखें file पर click करें save as image पर जाएँ save as image dialog box खुलता है
16000
9.72
spk_00000003
<hi-en> नीचे width और height parameters पर ध्यान दें default image size width 300 pixels और height 300 pixels रखती है
16000
10.728
spk_00000003
<hi-en> आप scrollers scrollers उपयोग करके values को बड़ा या घटा सकते हैं अब file type विकल्प पर gchem3d अनेक file formats का समर्थन करता है
16000
10.344
spk_00000003
<hi-en> file types जैसे vrml pdf png और अन्य drop down सूची में उपलब्ध हैं
16000
9.888
spk_00000003
<hi-en> अगर file का प्रकार नहीं स्पष्ट किया जाता तो gchem3d file के प्रकार को file के name से निर्धारित करने के लिए प्रयास करता है अगर यह सफल नहीं होता है तो default file type में vrml उपयोग किया जायेगा
16000
13.0
spk_00000003
<hi-en> अब structure को vrml file format में सेव करें vrml document विकल्प select करें file का name adenosine adenosine type करें
16000
10.656
spk_00000003
<hi-en> desktop पर file सेव करने के लिए desktop पर click करें सेव button पर click करें अब हम सीखेंगे कि वास्तव में vrmlफाइल type क्या है
16000
8.088
spk_00000003
<hi-en> vrml wrl extension के साथ text file format है 3d पालीगान properties जैसे vertices vertices edges edges surface color surface color उल्लिखित किये जा सकते हैं
16000
12.968
spk_00000003
<hi-en> vrml files plain text हैं जो gzip में compress होती हैं 3d modeling programs objects और scenes को इसमें सेव करते हैं
16000
8.928
spk_00000003
<hi-en> अब सेव की हुई file को खोलें adenosine wrl पर right click करें open with text editor विकल्प चुनें
16000
8.288
spk_00000003
<hi-en> text editor structure के बारे में सारा विवरण दर्शाता है अब page setup पर जाते हैं gchem3d printing के समय 300 dpi resolution उपयोग करता है
16000
12.752
spk_00000003
<hi-en> पेज setup properties gchempaint में properties के समान ही है इस क्रम में gchempaint tutorials में मैंने पहले ही विचार किया था
16000
8.32
spk_00000003
<hi-en> मैं window close करुँगी अब view menu पर जाएँ view menu select करें gchem3d निम्न चार model types उपयोग करके एक अणु प्रदर्शित करता है
16000
9.376
spk_00000003
<hi-en> balls and sticks balls and sticks * space filling space filling cylinders cylinders और * wireframe wireframe balls and sticks default model है
16000
8.416
spk_00000003
<hi-en> इस model को उपयोग करके multiple bond और correct bond स्थितियों को देखे जा सकते हैं मैं space filling पर click करुँगी और आप भिन्नता देख सकते हैं
16000
9.28
spk_00000003
<hi-en> space filling model अणुओं को compact form में दर्शाता है cylinders model structure को cylindrical pipes की form में दर्शाता है
16000
9.32
spk_00000003
<hi-en> wireframe model structure का ढांचा दर्शाता है balls and sticks पर वापस आते हैं अब हम background color पर जाते हैं default background color ब्लैक है
16000
8.512
spk_00000003
<hi-en> view menu select करें background color पर जाएँ एक menu खुलता है menu के अंत से custom color select करें
16000
8.256
spk_00000003
<hi-en> background colour window खुलती है जो हम चाहते हैं उस रंग को चुनने के लिए यह window अनेक क्षेत्र रखती है ह्यू hue उपयोग करके hue background color बदल सकते हैं
16000
10.432
spk_00000003
<hi-en> scroller पर click करें color circle की value और गतिविधि में बदलाव देखें saturation saturation उपयोग करके हम color की कान्सन्ट्रेशन बदल सकते हैं
16000
9.248
spk_00000003
<hi-en> value उपयोग करके समान color के भिन्न shades प्राप्त करने के लिए rgb combination बदल सकते हैं इसके आगे एक eyedropper eyedropper icon के साथ प्रीव्यू box है
16000
11.136
spk_00000003
<hi-en> eyedropper icon पर click करें अपने महत्व का color चुनने के लिए color ring पर कहीं भी click करें ok button पर click करें screen पर background color बदल जाता है
16000
12.384
spk_00000003
<hi-en> अब सारांशित करते हैं कि हमने क्या सीखा इस tutorial में हमने निम्न के बारे में सीखा भिन्न menus file type formats model types और background color कैसे बदलें
16000
9.768
spk_00000003
<hi-en> यहाँ एक नियत कार्य है 1 gchempaint से saccharide load करें और file को mdl format में सेव करें 2 molecules viewer मॉलेक्युल्स व्यूअर में structure खोलें
16000
9.312
spk_00000003
<hi-en> 3 image को png और pdf file types में सेव करें 4 अनेक background colors का प्रयास करें इस url पर उपलब्ध video देखें यह spoken tutorial project को सारांशित करता है
16000
10.528
spk_00000003
<hi-en> अच्छी bandwidth न मिलने पर आप इसे download करके देख सकते हैं spoken tutorial project team spoken tutorials का उपयोग करके कार्यशालाएं चलाती है
16000
8.128
spk_00000003
<hi-en> online test pass करने वालों को प्रमाणपत्र देते हैं अधिक जानकारी के लिए कृपया contact @spokentutorial org को लिखें spoken tutorial project talktoa teacher project का हिस्सा है
16000
12.744
spk_00000003
<hi-en> यह भारत सरकार के एमएचआरडी के आईसीटी के माध्यम से राष्ट्रीय साक्षरता mission द्वारा समर्थित है इस mission पर अधिक जानकारी इस लिंक पर उपलब्ध है
16000
9.592
spk_00000003
<hi-en> आई आई टी बॉम्बे से मैं श्रुति आर्य आपसे विदा लेती हूँ हमसे जुड़ने के लिए धन्यवाद
16000
6.496
End of preview. Expand in Data Studio

Hinglish Concatenated Audio Dataset

A large-scale, cleaned and annotated speech dataset covering Hindi, Hinglish (Hindi–English code-switching), and Indian English — compiled from 14 public corpora and original custom recordings, unified into a single Parquet dataset with consistent schema.

At a Glance

Stat Value
Total clips 815,171
Total Estimated Hours 2,264+
Unique speakers 6,304
Raw audio size ~243 GB
Languages Hindi (hi), Hinglish (hi-en), Indian English (en-IN)
Format Parquet with embedded audio (HF dataset viewer compatible)
Tasks ASR, TTS fine-tuning, voice cloning, speech research

Dataset Schema

Column Type Description
source string Speaker or source identifier
text string Cleaned transcript (may include <hi-en> language tags)
audio Audio WAV audio embedded in Parquet with native sample rate
quality string Sample rate (Hz) or MOS quality score where available
duration string Clip duration in seconds

Source Breakdown

Source Dataset Clips Description License
NPTEL Hindi Spoken Tutorial 521,028 Educational lectures in Hindi — AI4Bharat / NPTEL CC BY 4.0
AI4Bharat Kathbath 94,903 Multi-speaker Hindi speech benchmark CC BY 4.0
AI4Bharat IndicTTS 36,613 Studio-quality Hindi TTS corpus CC BY 4.0
Hinglish — ujs 25,378 Code-switched Hindi–English speech See source
Mozilla Common Voice 17 (Hindi) 24,643 Community-contributed Hindi speech CC0 1.0
AI4Bharat Mann Ki Baat 22,483 Broadcast Hindi speech, En-Indic aligned CC BY 4.0
Mann Ki Baat (English) 22,477 English side of Mann Ki Baat parallel corpus CC BY 4.0
Hindi Female Single Speaker HQ — Shekharmeena 22,058 High-quality single female speaker Hindi See source
Orpheus TTS Indian English 18,238 Multi-speaker Indian English TTS See source
Indic TTS Hindi — SPRINGLab 11,825 Multi-speaker Hindi TTS CC BY 4.0
Indian English — krishan23 6,765 Indian-accented English speech See source
Hinglish Test TTS — Shekharmeena 3,136 Custom Hinglish TTS recordings See source
Custom female TTS recordings 2,843 Original studio recordings CC BY 4.0
Orpheus TTS Shaurya — prashantarya 1,419 Male Hindi/English TTS voice See source
Anika Voice — Shekharmeena ~5 Custom female Hindi/Hinglish voice See source
Total 815,171

Curation & Processing

  • All clips re-segmented to remove silence and cross-talk
  • Transcripts normalised to Unicode NFC; language tags added (<hi-en> for code-switched utterances)
  • Duplicate and near-duplicate clips removed
  • Consistent CSV schema applied across all sources before concatenation
  • Audio stored as WAV, original sample rates preserved

License

This dataset is released under Creative Commons Attribution 4.0 International (CC BY 4.0).

You are free to:

  • Use for research, commercial, or personal projects
  • Share and redistribute in any medium
  • Build upon and adapt the data

Under these conditions:

  • Attribution — Credit this dataset and link to the original source datasets listed above
  • No misrepresentation — Do not use this data to generate non-consensual synthetic voices of real individuals, or for fraud, harassment, or disinformation

⚠️ Upstream licenses: Each constituent dataset retains its original license. Users are responsible for complying with the terms of the sources they use. Mozilla Common Voice is CC0; all AI4Bharat and SPRINGLab sources are CC BY 4.0. Sources marked "See source" should be checked individually.


Citation

If you use this dataset in your work, please cite it and the relevant upstream sources:

@dataset{agarwal2026hinglish,
  author    = {Agarwal, Ayushi},
  title     = {Hinglish Concatenated Audio Dataset},
  year      = {2026},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/datasets/agarwalayushi/hinglish},
  note      = {Aggregated from Mozilla Common Voice, AI4Bharat (Kathbath, Mann Ki Baat,
               Spoken Tutorial, IndicTTS), SPRINGLab IndicTTS, and custom recordings}
}

Contact

To report transcription errors, audio quality issues, or attribution concerns, please open a Discussion on this page.

Downloads last month
785