findAllChapterRecitations
Get all chapter recitations for specific reciter.
Params:
audio.findAllChapterRecitations(reciterId: string, options?: GetChapterRecitationOptions)
Param | Type |
---|---|
reciterId | string |
options | GetChapterRecitationOptions |
Example:
quran.v4.audio.findAllChapterRecitations('2'); // abdulbaset abdulsamad
findChapterRecitationById
Get chapter recitation for specific reciter and a specific chapter.
Params:
audio.findChapterRecitationById(chapterId: ChapterId, reciterId: string, options?: GetChapterRecitationOptions)
Param | Type |
---|---|
chapterId | ChapterId |
reciterId | string |
options | GetChapterRecitationOptions |
Example:
quran.v4.audio.findChapterRecitationById('1', '2'); // first chapter recitation for abdulbaset abdulsamad
findVerseRecitationsByChapter
Get all verse audio files for a specific reciter and a specific chapter.
Params:
audio.findVerseRecitationsByChapter(chapterId: ChapterId, recitationId: string, options?: GetVerseRecitationOptions)
Param | Type |
---|---|
chapterId | ChapterId |
recitationId | string |
options | GetVerseRecitationOptions |
Example:
quran.v4.audio.findVerseRecitationsByChapter('1', '2');
findVerseRecitationsByHizb
Get all verse audio files for a specific reciter and a specific hizb.
Params:
audio.findVerseRecitationsByHizb(hizb: HizbNumber, recitationId: string, options?: GetVerseRecitationOptions)
Param | Type |
---|---|
hizb | HizbNumber |
recitationId | string |
options | GetVerseRecitationOptions |
Example:
quran.v4.audio.findVerseRecitationsByHizb('1', '2');
findVerseRecitationsByJuz
Get all verse audio files for a specific reciter and a specific juz.
Params:
audio.findVerseRecitationsByJuz(juz: JuzNumber, recitationId: string, options?: GetVerseRecitationOptions)
Param | Type |
---|---|
juz | JuzNumber |
recitationId | string |
options | GetRecitationsOptions |
Example:
quran.v4.audio.findVerseRecitationsByJuz('1', '2');
findVerseRecitationsByKey
Get all verse audio files for a specific reciter and a specific verse.
Params:
audio.findVerseRecitationsByKey(key: VerseKey, recitationId: string, options?: GetVerseRecitationOptions)
Param | Type |
---|---|
key | VerseKey |
recitationId | string |
options | GetVerseRecitationOptions |
Example:
quran.v4.audio.findVerseRecitationsByKey('1:1', '2');
findVerseRecitationsByPage
Get all verse audio files for a specific reciter and a specific mushaf page.
Params:
audio.findVerseRecitationsByPage(page: PageNumber, recitationId: string, options?: GetVerseRecitationOptions)
Param | Type |
---|---|
page | PageNumber |
recitationId | string |
options | GetVerseRecitationOptions |
Example:
quran.v4.audio.findVerseRecitationsByPage('1', '2');
findVerseRecitationsByRub
Get all verse audio files for a specific reciter and a specific rub.
Params:
audio.findVerseRecitationsByRub(rub: RubNumber, recitationId: string, options?: GetVerseRecitationOptions)
Param | Type |
---|---|
rub | RubNumber |
recitationId | string |
options | GetVerseRecitationOptions |
Example:
quran.v4.audio.findVerseRecitationsByRub('1', '2');