CoolFace
Datasetpublic

Shaahadath/Noorwise-quran-indonesian-max

Noorwise Quran Indonesian Max Complete Quran (114 Surahs) with Indonesian (Bahasa) translation audio. Each surah contains Arabic recitation followed by Indonesian translation. Dataset Summary Total Surahs: 114 (complete Quran) Language: Arabic (recitation) + Indonesian (translation) Audio Format: MP3 Total Duration: ~43 hours Total Size: ~2.0 GB License: MIT Data Structure Each entry in Idmax.json contains the following fields: Field Type… See the full description on the dataset page: https://huggingface.co/datasets/Shaahadath/Noorwise-quran-indonesian-max.

sourceHugging Facemitupdated 1mo agoView on Hugging Face
0likes112downloads
Dataset Card

Noorwise Quran Indonesian Max

Complete Quran (114 Surahs) with Indonesian (Bahasa) translation audio. Each surah contains Arabic recitation followed by Indonesian translation.

Dataset Summary

  • —Total Surahs: 114 (complete Quran)
  • —Language: Arabic (recitation) + Indonesian (translation)
  • —Audio Format: MP3
  • —Total Duration: ~43 hours
  • —Total Size: ~2.0 GB
  • —License: MIT

Data Structure

Each entry in Idmax.json contains the following fields:

FieldTypeDescription
ffprobe_titlestringOriginal metadata title from the audio file
filenamestringName of the MP3 file on HuggingFace
artiststringReciter/source name
albumstringAlbum name from metadata
genrestringAudio genre
datestringPublication year
duration_secondsfloatLength of audio in seconds
duration_formattedstringHuman-readable duration (MM:SS)
size_bytesintFile size in bytes
size_mbfloatFile size in megabytes
bit_rateintAudio bitrate
formatstringAudio format (mp3)
hascoverartboolWhether the file has embedded cover art
cover_titlestringCover art title (if present)
hf_urlstringDirect download URL from HuggingFace

File Naming

Files are named using the exact ffprobe metadata title. Only filesystem-unsafe characters (/, \, :, *, ?, ", <, >, |) are replaced with underscores. No custom naming or renumbering is applied.

Artists

  • —Tariq Jamil: 112 surahs
  • —Irahlal Indonesia: 2 surahs (Surah 21 Al-Anbiyaa, Surah 27 An-Naml)

Notes

Surahs 21 (Al-Anbiyaa) and 27 (An-Naml) were replaced with recordings from Irahlal Indonesia as the original source files had corrupted ffprobe metadata (wrong surah numbers in the ID3 tags).

Usage

python
from huggingface_hub import hf_hub_download
import json

# Download the JSON manifest
manifest_path = hf_hub_download(
    repo_id="Shaahadath/Noorwise-quran-indonesian-max",
    filename="Idmax.json",
    repo_type="dataset"
)

with open(manifest_path) as f:
    surahs = json.load(f)

# Access a specific surah
surah_1 = surahs[0]
print(f"Title: {surah_1['ffprobe_title']}")
print(f"Duration: {surah_1['duration_formatted']}")
print(f"Download: {surah_1['hf_url']}")

License

This dataset is released under the MIT license. The audio content belongs to the respective artists (Tariq Jamil, Irahlal Indonesia).