Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
audio
audioduration (s)
8.5
17.6k
label
class label
114 classes
0001
1002
2003
3004
4005
5006
6007
7008
8009
9010
10011
11012
12013
13014
14015
15016
16017
17018
18019
19020
20021
21022
22023
23024
24025
25026
26027
27028
28029
29030
30031
31032
32033
33034
34035
35036
36037
37038
38039
39040
40041
41042
42043
43044
44045
45046
46047
47048
48049
49050
50051
51052
52053
53054
54055
55056
56057
57058
58059
59060
60061
61062
62063
63064
64065
65066
66067
67068
68069
69070
70071
71072
72073
73074
74075
75076
76077
77078
78079
79080
80081
81082
82083
83084
84085
85086
86087
87088
88089
89090
90091
91092
92093
93094
94095
95096
96097
97098
98099
99100
End of preview. Expand in Data Studio

Quranic Recitation Dataset Banner

Opus Format Total Reciters Protobuf Cloudflare CDN License


🌟 Overview

Quranic Recitation Dataset (Word-by-Word Sync) is a highly optimized, production-ready dataset containing high-quality audio recitations of the Holy Quran synchronized at the word-by-word level.

This dataset features 34 world-renowned reciters, with every Surah (114 chapters) mapped precisely to millisecond-accurate word timestamps. It is designed for modern Islamic mobile and web applications β€” served via a Cloudflare Edge CDN with native range-request support for instant audio streaming and seeking.


πŸš€ Key Features

  • 34 Reciters Γ— 114 Surahs β€” totaling 3,876 audio files with matching timing data.
  • Optimized Audio β€” Mono-channel, 16kHz, 32kbps .opus format. Exceptional clarity at ultra-low bandwidth.
  • Per-Surah Architecture β€” Each surah is a single .opus file. Seek to any ayah using the timing data β€” no need to download individual ayah files.
  • Protocol Buffer Timing β€” Binary .pb timing files are ~33% smaller than JSON and parse instantly in any language.
  • Cloudflare Edge CDN β€” Files are served from cdn.mualim.app with edge caching, CORS, and native HTTP 206 Partial Content for mobile audio seeking.
  • Word-Level Accuracy β€” Timestamps map to standard Uthmani script word indices, enabling karaoke-style highlighting.

πŸ“‘ CDN Access

This dataset is served via a Cloudflare Worker that proxies HuggingFace with aggressive edge caching. You never need to download the 17GB repository locally.

Base URL

https://cdn.mualim.app

URL Format

{BASE_URL}/{slug}/{surah_number}.{opus|pb}

Quick Examples

# Audio β€” Mishari Rashid Al-Afasy, Surah Al-Fatihah
curl https://cdn.mualim.app/mishari-rashid-al-afasy-murattal-hafs/001.opus

# Timing β€” Same reciter, same surah (Protocol Buffer)
curl https://cdn.mualim.app/mishari-rashid-al-afasy-murattal-hafs/001.pb

# Range Request (for mobile seeking)
curl -H "Range: bytes=0-1024" \
  https://cdn.mualim.app/mishari-rashid-al-afasy-murattal-hafs/001.opus
# β†’ 206 Partial Content βœ…

CDN Features

Feature Details
Edge Caching max-age=31536000, immutable (1 year)
Range Requests Native 206 Partial Content support
CORS Access-Control-Allow-Origin: *
Stale Fallback stale-if-error=604800 (7 days)
Fallback Origin Direct HuggingFace if CDN cache misses

Direct HuggingFace Fallback

If the CDN is unavailable, you can fetch directly from HuggingFace:

https://huggingface.co/datasets/zaibihassan/Quranic-Recitation-Data/resolve/main/{Folder Name}/{Surah}/{File}

Note: Folder names on HuggingFace contain spaces and special characters (e.g., Mishari Rashid Al Afasy (Murattal – Hafs)). The CDN slug mapping handles this automatically.


πŸ“‚ Dataset Structure

The dataset is organized by Reciter Folder β†’ Surah Number (001–114).

Each surah folder contains two files:

  1. {surah}.opus β€” Per-surah audio file (full surah in one file)
  2. {surah}.pb β€” Protocol Buffer word-by-word timing data
Quranic-Recitation-Data/
β”œβ”€β”€ Abdul Basit Abdul Samad (Mujawwad – Hafs)/
β”‚   β”œβ”€β”€ 001/
β”‚   β”‚   β”œβ”€β”€ 001.opus    (Full Surah Al-Fatihah audio)
β”‚   β”‚   └── 001.pb      (Word timestamps for all ayahs)
β”‚   β”œβ”€β”€ 002/
β”‚   β”‚   β”œβ”€β”€ 002.opus
β”‚   β”‚   └── 002.pb
β”‚   └── ...
β”œβ”€β”€ Mishari Rashid Al Afasy (Murattal – Hafs)/
β”œβ”€β”€ Alijon Qari/
└── ...

⏱️ Timing Data Schema (Protocol Buffers)

The .pb timing files map every verse in a surah to word-level timestamps.

Protocol Buffer Schema (recitation.proto)

syntax = "proto3";
package recitation;

message WordSegment {
  int32 word_index_0_based = 1;
  int32 word_index_1_based = 2;
  int32 timestamp_from = 3;      // milliseconds from start of surah
  int32 timestamp_to = 4;        // milliseconds from start of surah
}

message VerseSegments {
  repeated WordSegment segments = 1;
}

message SurahTimestamps {
  map<string, VerseSegments> verses = 1;  // key = "surah:ayah" (e.g., "1:1")
}

How It Works

Each .pb file contains a SurahTimestamps message with all verses of that surah. The timestamps are relative to the start of the surah audio file, so you can:

  1. Load the surah .opus audio
  2. Decode the .pb timing data
  3. To play a specific ayah, seek the audio to verses["1:3"].segments[0].timestamp_from milliseconds
  4. Highlight words in real-time as currentTimeMs falls between each segment's timestamp_from and timestamp_to

πŸ”— CDN Slug Map

The CDN uses URL-friendly slugs that map to the actual folder names on HuggingFace:

# CDN Slug Folder Name
1 abdul-basit-abdul-samad-mujawwad-hafs Abdul Basit Abdul Samad (Mujawwad – Hafs)
2 abdul-basit-abdul-samad-murattal-hafs Abdul Basit Abdul Samad (Murattal – Hafs)
3 abdul-rahman-al-sudais-murattal-hafs Abdul Rahman Al Sudais (Murattal – Hafs)
4 abdullah-hamad-abu-sharida Abdullah Hamad Abu Sharida
5 abu-bakr-al-shatri-murattal-hafs Abu Bakr Al Shatri (Murattal – Hafs)
6 ahmed-ibn-ali-al-ajmy Ahmed ibn Ali Al Ajmy
7 alijon-qari Alijon Qari
8 alnufais Alnufais
9 alzain-mohammad-ahmad Alzain Mohammad Ahmad
10 ayman-suwaid-muallim Ayman Suwaid (Muallim)
11 badr-al-turki Badr Al Turki
12 bandar-baleela Bandar Baleela
13 fatih-seferagic Fatih Seferagic
14 hani-ar-rifai-murattal-hafs Hani Ar Rifai (Murattal – Hafs)
15 idris-abkar Idris Abkar
16 khalid-al-jalil-murattal-hafs Khalid Al Jalil (Murattal – Hafs)
17 khalifa-al-tunaiji-murattal-hafs Khalifa Al Tunaiji (Murattal – Hafs)
18 maher-al-muaiqly-murattal-hafs Maher Al Muaiqly (Murattal – Hafs)
19 mahmoud-khalil-al-husary-mujawwad-hafs Mahmoud Khalil Al Husary (Mujawwad – Hafs)
20 mahmoud-khalil-al-husary-mualim-hafs Mahmoud Khalil Al Husary (Mualim – Hafs)
21 mahmoud-khalil-al-husary-murattal-hafs Mahmoud Khalil Al Husary (Murattal – Hafs – Version 2)
22 mishari-rashid-al-afasy-murattal-hafs Mishari Rashid Al Afasy (Murattal – Hafs)
23 mohamed-al-tablawi-murattal-hafs Mohamed Al Tablawi (Murattal – Hafs)
24 muhammad-al-luhaidan Muhammad Al Luhaidan
25 muhammad-siddiq-al-minshawi-kids Muhammad Siddiq Al Minshawi (Kids)
26 muhammad-siddiq-al-minshawi-murattal-hafs Muhammad Siddiq Al Minshawi (Murattal – Hafs)
27 nabil-ar-rifai Nabil Ar Rifai
28 noreen-siddiq-duri-an-abu-amr Noreen Siddiq (Duri 'an Abu Amr)
29 raad-mohammad-al-kurdi Raad Mohammad Al Kurdi
30 saad-al-ghamdi-murattal-hafs Saad Al Ghamdi (Murattal – Hafs)
31 saud-al-shuraim-murattal-hafs Saud Al Shuraim (Murattal – Hafs)
32 surah-recitation-hady-toure Surah Recitation – Hady Toure
33 tawfeeq-bin-saeed-as-sawaaigh Tawfeeq bin Saeed As Sawaaigh
34 yasser-al-dosari-murattal-hafs Yasser Al Dosari (Murattal – Hafs)

πŸ“œ Data License & Usage

License: Apache-2.0

This dataset is completely free and open-source for personal, educational, and commercial projects under the Apache License 2.0. You are encouraged to integrate this directly into mobile apps (Flutter, React Native, iOS, Android) and web platforms.

Attribution: While not strictly required by the license, we appreciate attribution linking back to this dataset to support the ongoing development of open-source Islamic infrastructure.

Downloads last month
9,460