CoolFace
Datasetpublic

KeisukeMiyamoto/nhk-archive-meta

NHK Archives Metadata NHK Archives Metadata is a Japanese metadata dataset for audio and video records from the public NHK Archives search service. It provides titles, genres, durations, NHK Archives page URLs, and direct streaming URLs. The dataset contains metadata and URLs only. It does not contain audio or video files, transcripts, or copied media content. Purpose This dataset is intended for research and applications that use Japanese audio and video metadata… See the full description on the dataset page: https://huggingface.co/datasets/KeisukeMiyamoto/nhk-archive-meta.

sourceHugging Faceotherupdated 29d agoView on Hugging Face
0likes40downloads
Dataset Card

NHK Archives Metadata

NHK Archives Metadata is a Japanese metadata dataset for audio and video records from the public NHK Archives search service. It provides titles, genres, durations, NHK Archives page URLs, and direct streaming URLs.

The dataset contains metadata and URLs only. It does not contain audio or video files, transcripts, or copied media content.

Purpose

This dataset is intended for research and applications that use Japanese audio and video metadata, such as archive search, catalog analysis, media retrieval, and metadata-based dataset construction.

Source Data

The records come from the public NHK Archives search service.

The dataset has two configurations:

  • —audio: audio records from NHK Archives.
  • —video: video records from NHK Archives.

The page_url column links to the corresponding NHK Archives page. The direct_url column contains a streaming URL returned by NHK Archives and may change or become unavailable.

Dataset Size

SubsetRowsDuration (hours)File
Audio1,677133.1audio/nhk_archives_audio.parquet
Video31,8222,164.4video/nhk_archives_movies.parquet
Total33,4992,297.4—

Columns

ColumnDescription
idNHK Archives record ID.
page_urlURL of the record page on NHK Archives.
direct_urlDirect streaming URL for the record.
titleJapanese title of the record.
genreGenre label from the NHK Archives metadata. Some values may be missing.
duration_secondsDuration of the record in seconds. Some values may be missing.

Example

python
from datasets import load_dataset

audio = load_dataset("KeisukeMiyamoto/nhk-archive", "audio", split="train")
video = load_dataset("KeisukeMiyamoto/nhk-archive", "video", split="train")

print(audio[0])
print(video[0])

License

Please read the official NHK Creative Library usage rules.