Add verified single-record download guidance
Browse filesAdd an exact CC BY-NC 4.0 root license notice, a helper that pins a revision and separately verifies Xet identity, byte size, and local SHA-256, and README guidance clarifying that RELEASE_MANIFEST.json is the historical v0.2.0 candidate rather than a current video-payload manifest. Local validation passed for all 490 metadata rows; a 28,526,284-byte record passed an end-to-end download and SHA-256 check.
- LICENSE +20 -0
- README.md +694 -659
- tools/download_verified.py +155 -0
LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Time-Lapse Artifacts
|
| 2 |
+
Copyright (c) 2026 Tim Maxwell
|
| 3 |
+
|
| 4 |
+
Except where otherwise noted, this dataset is licensed under the Creative
|
| 5 |
+
Commons Attribution-NonCommercial 4.0 International license (CC BY-NC 4.0):
|
| 6 |
+
|
| 7 |
+
https://creativecommons.org/licenses/by-nc/4.0/
|
| 8 |
+
|
| 9 |
+
Legal code:
|
| 10 |
+
|
| 11 |
+
https://creativecommons.org/licenses/by-nc/4.0/legalcode
|
| 12 |
+
|
| 13 |
+
The license applies only to material for which the licensor holds the
|
| 14 |
+
necessary rights. It does not independently grant rights in incidental
|
| 15 |
+
third-party content that may appear on screens, in references, or in captured
|
| 16 |
+
audio. Users remain responsible for reviewing those rights and the terms of
|
| 17 |
+
their downstream use.
|
| 18 |
+
|
| 19 |
+
See README.md for the dataset's rights, privacy, audio, and attribution
|
| 20 |
+
guidance.
|
README.md
CHANGED
|
@@ -1,681 +1,716 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
-
pretty_name: Time-Lapse Artifacts
|
| 4 |
-
annotations_creators:
|
| 5 |
-
- expert-generated
|
| 6 |
-
source_datasets:
|
| 7 |
-
- original
|
| 8 |
-
size_categories:
|
| 9 |
-
- n<1K
|
| 10 |
-
task_categories:
|
| 11 |
-
- video-classification
|
| 12 |
-
- feature-extraction
|
| 13 |
-
tags:
|
| 14 |
-
- drawing
|
| 15 |
-
- longitudinal-study
|
| 16 |
-
- traditional-art
|
| 17 |
-
- provenance
|
| 18 |
-
- single-subject
|
| 19 |
-
- video
|
| 20 |
-
- computer-vision
|
| 21 |
-
- time-lapse
|
| 22 |
-
- human-motion
|
| 23 |
-
dataset_info:
|
| 24 |
-
- config_name: canonical
|
| 25 |
-
features:
|
| 26 |
-
- name: video
|
| 27 |
-
dtype: video
|
| 28 |
-
- name: record_id
|
| 29 |
-
dtype: large_string
|
| 30 |
-
- name: collection_tier
|
| 31 |
-
dtype: large_string
|
| 32 |
-
- name: is_canonical
|
| 33 |
-
dtype: bool
|
| 34 |
-
- name: acquisition_protocol_version
|
| 35 |
-
dtype: large_string
|
| 36 |
-
- name: date
|
| 37 |
-
dtype: large_string
|
| 38 |
-
- name: time
|
| 39 |
-
dtype: large_string
|
| 40 |
-
- name: tool
|
| 41 |
-
dtype: large_string
|
| 42 |
-
- name: medium
|
| 43 |
-
dtype: large_string
|
| 44 |
-
- name: support
|
| 45 |
-
dtype: large_string
|
| 46 |
-
- name: dimensions
|
| 47 |
-
dtype: large_string
|
| 48 |
-
- name: duration_seconds
|
| 49 |
-
dtype: float64
|
| 50 |
-
- name: width_px
|
| 51 |
-
dtype: int64
|
| 52 |
-
- name: height_px
|
| 53 |
-
dtype: int64
|
| 54 |
-
- name: orientation
|
| 55 |
-
dtype: large_string
|
| 56 |
-
- name: encoded_frame_rate
|
| 57 |
-
dtype: float64
|
| 58 |
-
- name: video_codec
|
| 59 |
-
dtype: large_string
|
| 60 |
-
- name: pixel_format
|
| 61 |
-
dtype: large_string
|
| 62 |
-
- name: container
|
| 63 |
-
dtype: large_string
|
| 64 |
-
- name: has_audio
|
| 65 |
-
dtype: bool
|
| 66 |
-
- name: hub_xet_hash
|
| 67 |
-
dtype: large_string
|
| 68 |
-
- name: original_filename
|
| 69 |
-
dtype: large_string
|
| 70 |
-
- name: provenance_status
|
| 71 |
-
dtype: large_string
|
| 72 |
-
- name: legacy_provenance_path
|
| 73 |
-
dtype: large_string
|
| 74 |
-
- name: legacy_related_references
|
| 75 |
-
dtype: large_string
|
| 76 |
-
- name: evidence_method
|
| 77 |
-
dtype: large_string
|
| 78 |
-
- name: provenance_reference_duration_delta_seconds
|
| 79 |
-
dtype: float64
|
| 80 |
-
- name: size_bytes
|
| 81 |
-
dtype: int64
|
| 82 |
-
- name: notes
|
| 83 |
-
dtype: large_string
|
| 84 |
-
splits:
|
| 85 |
-
- name: archive
|
| 86 |
-
num_examples: 362
|
| 87 |
-
- config_name: pre_standard
|
| 88 |
-
features:
|
| 89 |
-
- name: video
|
| 90 |
-
dtype: video
|
| 91 |
-
- name: record_id
|
| 92 |
-
dtype: large_string
|
| 93 |
-
- name: collection_tier
|
| 94 |
-
dtype: large_string
|
| 95 |
-
- name: is_canonical
|
| 96 |
-
dtype: bool
|
| 97 |
-
- name: acquisition_protocol_version
|
| 98 |
-
dtype: large_string
|
| 99 |
-
- name: date
|
| 100 |
-
dtype: large_string
|
| 101 |
-
- name: time
|
| 102 |
-
dtype: large_string
|
| 103 |
-
- name: tool
|
| 104 |
-
dtype: large_string
|
| 105 |
-
- name: medium
|
| 106 |
-
dtype: large_string
|
| 107 |
-
- name: support
|
| 108 |
-
dtype: large_string
|
| 109 |
-
- name: dimensions
|
| 110 |
-
dtype: large_string
|
| 111 |
-
- name: duration_seconds
|
| 112 |
-
dtype: float64
|
| 113 |
-
- name: width_px
|
| 114 |
-
dtype: int64
|
| 115 |
-
- name: height_px
|
| 116 |
-
dtype: int64
|
| 117 |
-
- name: orientation
|
| 118 |
-
dtype: large_string
|
| 119 |
-
- name: encoded_frame_rate
|
| 120 |
-
dtype: float64
|
| 121 |
-
- name: video_codec
|
| 122 |
-
dtype: large_string
|
| 123 |
-
- name: pixel_format
|
| 124 |
-
dtype: large_string
|
| 125 |
-
- name: container
|
| 126 |
-
dtype: large_string
|
| 127 |
-
- name: has_audio
|
| 128 |
-
dtype: bool
|
| 129 |
-
- name: hub_xet_hash
|
| 130 |
-
dtype: large_string
|
| 131 |
-
- name: original_filename
|
| 132 |
-
dtype: large_string
|
| 133 |
-
- name: provenance_status
|
| 134 |
-
dtype: large_string
|
| 135 |
-
- name: legacy_provenance_path
|
| 136 |
-
dtype: large_string
|
| 137 |
-
- name: legacy_related_references
|
| 138 |
-
dtype: large_string
|
| 139 |
-
- name: evidence_method
|
| 140 |
-
dtype: large_string
|
| 141 |
-
- name: provenance_reference_duration_delta_seconds
|
| 142 |
-
dtype: float64
|
| 143 |
-
- name: size_bytes
|
| 144 |
-
dtype: int64
|
| 145 |
-
- name: notes
|
| 146 |
-
dtype: large_string
|
| 147 |
-
splits:
|
| 148 |
-
- name: archive
|
| 149 |
-
num_examples: 128
|
| 150 |
-
configs:
|
| 151 |
-
- config_name: canonical
|
| 152 |
-
default: true
|
| 153 |
-
features:
|
| 154 |
-
- name: video
|
| 155 |
-
dtype: video
|
| 156 |
-
- name: record_id
|
| 157 |
-
dtype: large_string
|
| 158 |
-
- name: collection_tier
|
| 159 |
-
dtype: large_string
|
| 160 |
-
- name: is_canonical
|
| 161 |
-
dtype: bool
|
| 162 |
-
- name: acquisition_protocol_version
|
| 163 |
-
dtype: large_string
|
| 164 |
-
- name: date
|
| 165 |
-
dtype: large_string
|
| 166 |
-
- name: time
|
| 167 |
-
dtype: large_string
|
| 168 |
-
- name: tool
|
| 169 |
-
dtype: large_string
|
| 170 |
-
- name: medium
|
| 171 |
-
dtype: large_string
|
| 172 |
-
- name: support
|
| 173 |
-
dtype: large_string
|
| 174 |
-
- name: dimensions
|
| 175 |
-
dtype: large_string
|
| 176 |
-
- name: duration_seconds
|
| 177 |
-
dtype: float64
|
| 178 |
-
- name: width_px
|
| 179 |
-
dtype: int64
|
| 180 |
-
- name: height_px
|
| 181 |
-
dtype: int64
|
| 182 |
-
- name: orientation
|
| 183 |
-
dtype: large_string
|
| 184 |
-
- name: encoded_frame_rate
|
| 185 |
-
dtype: float64
|
| 186 |
-
- name: video_codec
|
| 187 |
-
dtype: large_string
|
| 188 |
-
- name: pixel_format
|
| 189 |
-
dtype: large_string
|
| 190 |
-
- name: container
|
| 191 |
-
dtype: large_string
|
| 192 |
-
- name: has_audio
|
| 193 |
-
dtype: bool
|
| 194 |
-
- name: hub_xet_hash
|
| 195 |
-
dtype: large_string
|
| 196 |
-
- name: original_filename
|
| 197 |
-
dtype: large_string
|
| 198 |
-
- name: provenance_status
|
| 199 |
-
dtype: large_string
|
| 200 |
-
- name: legacy_provenance_path
|
| 201 |
-
dtype: large_string
|
| 202 |
-
- name: legacy_related_references
|
| 203 |
-
dtype: large_string
|
| 204 |
-
- name: evidence_method
|
| 205 |
-
dtype: large_string
|
| 206 |
-
- name: provenance_reference_duration_delta_seconds
|
| 207 |
-
dtype: float64
|
| 208 |
-
- name: size_bytes
|
| 209 |
-
dtype: int64
|
| 210 |
-
- name: notes
|
| 211 |
-
dtype: large_string
|
| 212 |
-
data_files:
|
| 213 |
-
- split: archive
|
| 214 |
-
path:
|
| 215 |
-
- metadata.csv
|
| 216 |
-
- Standard_Time_Lapses/*.mp4
|
| 217 |
-
- config_name: pre_standard
|
| 218 |
-
features:
|
| 219 |
-
- name: video
|
| 220 |
-
dtype: video
|
| 221 |
-
- name: record_id
|
| 222 |
-
dtype: large_string
|
| 223 |
-
- name: collection_tier
|
| 224 |
-
dtype: large_string
|
| 225 |
-
- name: is_canonical
|
| 226 |
-
dtype: bool
|
| 227 |
-
- name: acquisition_protocol_version
|
| 228 |
-
dtype: large_string
|
| 229 |
-
- name: date
|
| 230 |
-
dtype: large_string
|
| 231 |
-
- name: time
|
| 232 |
-
dtype: large_string
|
| 233 |
-
- name: tool
|
| 234 |
-
dtype: large_string
|
| 235 |
-
- name: medium
|
| 236 |
-
dtype: large_string
|
| 237 |
-
- name: support
|
| 238 |
-
dtype: large_string
|
| 239 |
-
- name: dimensions
|
| 240 |
-
dtype: large_string
|
| 241 |
-
- name: duration_seconds
|
| 242 |
-
dtype: float64
|
| 243 |
-
- name: width_px
|
| 244 |
-
dtype: int64
|
| 245 |
-
- name: height_px
|
| 246 |
-
dtype: int64
|
| 247 |
-
- name: orientation
|
| 248 |
-
dtype: large_string
|
| 249 |
-
- name: encoded_frame_rate
|
| 250 |
-
dtype: float64
|
| 251 |
-
- name: video_codec
|
| 252 |
-
dtype: large_string
|
| 253 |
-
- name: pixel_format
|
| 254 |
-
dtype: large_string
|
| 255 |
-
- name: container
|
| 256 |
-
dtype: large_string
|
| 257 |
-
- name: has_audio
|
| 258 |
-
dtype: bool
|
| 259 |
-
- name: hub_xet_hash
|
| 260 |
-
dtype: large_string
|
| 261 |
-
- name: original_filename
|
| 262 |
-
dtype: large_string
|
| 263 |
-
- name: provenance_status
|
| 264 |
-
dtype: large_string
|
| 265 |
-
- name: legacy_provenance_path
|
| 266 |
-
dtype: large_string
|
| 267 |
-
- name: legacy_related_references
|
| 268 |
-
dtype: large_string
|
| 269 |
-
- name: evidence_method
|
| 270 |
-
dtype: large_string
|
| 271 |
-
- name: provenance_reference_duration_delta_seconds
|
| 272 |
-
dtype: float64
|
| 273 |
-
- name: size_bytes
|
| 274 |
-
dtype: int64
|
| 275 |
-
- name: notes
|
| 276 |
-
dtype: large_string
|
| 277 |
-
data_files:
|
| 278 |
-
- split: archive
|
| 279 |
-
path:
|
| 280 |
-
- Pre_Standard_Time_Lapses/metadata.csv
|
| 281 |
-
- Pre_Standard_Time_Lapses/*.mp4
|
| 282 |
-
---
|
| 283 |
-
|
| 284 |
-
# time-lapse-artifacts
|
| 285 |
-
|
| 286 |
-
490 time-lapse recordings of one artist's traditional drawing practice across
|
| 287 |
-
nearly two years (September 2024–August 22, 2026), with standardized acquisition
|
| 288 |
-
since July 13, 2025. Across approximately 1.98 TB of video, the archive follows
|
| 289 |
-
the same artist working in physical media—including pencil, ballpoint pen,
|
| 290 |
-
fountain pen, brush, graphite, and ink—on fixed-format paper and illustration board.
|
| 291 |
-
The release combines 362 canonical Standard videos and 128 earlier
|
| 292 |
-
Pre-Standard recordings. Every published video has a persistent record ID,
|
| 293 |
-
content hash, byte size, and encoded-stream metadata; historical session and
|
| 294 |
-
provenance fields remain less complete in the Pre-Standard tier.
|
| 295 |
-
|
| 296 |
-
In this dataset, provenance refers to the documented relationship between a
|
| 297 |
-
physical drawing and its time-lapse record, rather than to histories of
|
| 298 |
-
ownership or sale.
|
| 299 |
-
|
| 300 |
-
An earlier 2012–2016 archive of more than 8 TB also exists, consisting
|
| 301 |
-
primarily of uploaded 1080p drawing videos, with some livestream-derived
|
| 302 |
-
material. It is not yet published in this dataset and is excluded from the
|
| 303 |
-
current 490-record, 1.98-TB release totals. This is an active construction
|
| 304 |
-
release.
|
| 305 |
-
|
| 306 |
-
## Snapshot and Coverage
|
| 307 |
-
|
| 308 |
-
These counts describe the current `main` branch. The immutable `v0.3.0` tag
|
| 309 |
-
contains 467 rows: 338 Standard and 129 Pre-Standard. A later curator-verified
|
| 310 |
-
provenance correction promoted one distinct Standard recording from the
|
| 311 |
-
noncanonical unresolved subtree. A subsequent creator-verified ingestion added
|
| 312 |
-
17 unique Standard media objects. A subsequent creator-verified tier review
|
| 313 |
-
promoted the clean July 13 recording without changing its payload or stable
|
| 314 |
-
identity, bringing the prior `main` state to 357 Standard and 128 Pre-Standard
|
| 315 |
-
records. The next ingestion added three creator-verified August 2026 Standard
|
| 316 |
-
recordings, including the first 14 × 17 in record and the first member of a
|
| 317 |
-
recording sequence for which `Rec02` remains expected. This update adds the first
|
| 318 |
-
two recordings in a separate August 22 14 × 17 in sequence; `Rec03` is expected,
|
| 319 |
-
and the sequence endpoint is not yet claimed.
|
| 320 |
-
A later creator-confirmed filename correction preserves the complete
|
| 321 |
-
`Rec01`–`Rec15` order of 15 existing 30 × 40 in recordings dated June 18–30.
|
| 322 |
-
Their media payloads, stable IDs, hashes, metadata membership, and release
|
| 323 |
-
counts are unchanged.
|
| 324 |
-
Two records from the 17-object ingestion and the promoted July 13 record are
|
| 325 |
-
explicitly documented as shortened derivatives rather than full-duration
|
| 326 |
-
masters.
|
| 327 |
-
|
| 328 |
-
| Collection tier | Published MP4s | Indexed rows | Date coverage | Metadata state |
|
| 329 |
-
| --- | ---: | ---: | --- | --- |
|
| 330 |
-
| `standard` | 362 direct files | 362 | 2025-07-13–2026-08-22 | Complete core technical metadata for every direct Standard file |
|
| 331 |
-
| `pre_standard` | 128 | 128 | 2024-09-17–2025-07-09, plus 9 unknown dates | Complete core technical metadata; historical descriptive and provenance gaps remain |
|
| 332 |
-
| Earlier archive (unpublished) | 0 public videos | 0 | Historical scope 2012–2016 | More than 8 TB held outside this release; ingestion pending |
|
| 333 |
-
|
| 334 |
-
**Current published index:** `main` contains 490 rows: 362 Standard and 128
|
| 335 |
-
Pre-Standard. The preceding v0.1 state at revision
|
| 336 |
-
`339e6149de130cbe2d001f7a0e5247872bc788ec` exposed 465 rows: 335 Standard and
|
| 337 |
-
130 Pre-Standard. v0.2 added three previously unindexed Standard files and
|
| 338 |
-
removed one Pre-Standard row whose media did not meet the ownership and
|
| 339 |
-
provenance threshold. v0.3 added stable Pre-Standard identities and technical
|
| 340 |
-
metadata. The post-v0.3 provenance correction promotes one previously
|
| 341 |
-
unresolved, distinct Standard recording and corrects a separate record's
|
| 342 |
-
physical finish date and time. The later 17-record Standard ingestion applies
|
| 343 |
-
technical and provenance criteria without filtering records by aesthetic
|
| 344 |
-
completion or perceived artistic quality. The later July 13 promotion applies
|
| 345 |
-
the same rule to a clean shortened record and moves the documented Standard
|
| 346 |
-
boundary coherently rather than creating a one-file exception.
|
| 347 |
-
|
| 348 |
-
The Hub configurations use the split name `archive`. No official
|
| 349 |
-
train/validation/test partition has been defined.
|
| 350 |
-
|
| 351 |
-
## Viewer and Metadata Discovery
|
| 352 |
-
|
| 353 |
-
The release exposes two explicit configurations so metadata-complete canonical
|
| 354 |
-
records are not silently mixed with historically less complete records:
|
| 355 |
-
|
| 356 |
-
- `canonical/archive` is the default and loads root `metadata.csv` with the 362
|
| 357 |
-
direct files in `Standard_Time_Lapses/`
|
| 358 |
-
- `pre_standard/archive` loads `Pre_Standard_Time_Lapses/metadata.csv` with the
|
| 359 |
-
128 direct files in that folder
|
| 360 |
-
|
| 361 |
-
Each configuration has the same declared 29-column schema. Stored dimensions
|
| 362 |
-
and byte sizes are nullable integers, `has_audio` is a nullable boolean, and
|
| 363 |
-
encoded frame rate remains a float because historical encodings include
|
| 364 |
-
fractional reported rates. Undocumented values load as null rather than as
|
| 365 |
-
zero or false. Both indexes declare tier membership directly: the root index sets
|
| 366 |
-
`collection_tier = standard` and `is_canonical = true`; the Pre-Standard CSV
|
| 367 |
-
sets `collection_tier = pre_standard` and `is_canonical = false`.
|
| 368 |
-
|
| 369 |
-
Published-index completeness is defined by the 362 rows in `canonical/archive`
|
| 370 |
-
plus the 128 rows in `pre_standard/archive` and their generated Parquet
|
| 371 |
-
exports. Hugging Face's separate column Statistics job is an auxiliary,
|
| 372 |
-
asynchronous surface; its availability is not used to claim or reject
|
| 373 |
-
row-level completeness.
|
| 374 |
-
|
| 375 |
-
The configuration lists the two active `metadata.csv` files and only direct
|
| 376 |
-
MP4 paths in `Standard_Time_Lapses/` and `Pre_Standard_Time_Lapses/`. It does
|
| 377 |
-
not use a recursive canonical glob, so the nested
|
| 378 |
-
`Standard_Time_Lapses/Provenance/` subtree is excluded.
|
| 379 |
-
|
| 380 |
-
## Overview
|
| 381 |
-
|
| 382 |
-
`time-lapse-artifacts` documents analog drawing processes across different
|
| 383 |
-
recording periods and acquisition conditions. Raw video is the primary record.
|
| 384 |
-
Metadata identifies, organizes, compares, and documents recordings without
|
| 385 |
-
imposing aesthetic scores or stylistic labels.
|
| 386 |
-
|
| 387 |
-
The collection is a single-creator longitudinal archive. This makes it useful
|
| 388 |
-
for studying within-practice change, but it does not represent artists,
|
| 389 |
-
materials, studios, or drawing practices broadly.
|
| 390 |
-
|
| 391 |
-
## Repository Structure
|
| 392 |
-
|
| 393 |
-
### `Standard_Time_Lapses/`
|
| 394 |
-
|
| 395 |
-
The directory contains 362 direct MP4 files. `metadata.csv` is their complete
|
| 396 |
-
machine-readable canonical index: every direct file has one validated row with
|
| 397 |
-
core technical metadata. Direct placement alone is not sufficient for future
|
| 398 |
-
additions; metadata and release validation are required.
|
| 399 |
-
|
| 400 |
-
Each canonical metadata row now includes:
|
| 401 |
-
|
| 402 |
-
- a persistent `record_id`
|
| 403 |
-
- `collection_tier = standard`
|
| 404 |
-
- `is_canonical = true`
|
| 405 |
-
- `acquisition_protocol_version = standard-2025-07-13`
|
| 406 |
-
- descriptive session fields
|
| 407 |
-
- encoded video properties
|
| 408 |
-
- repository content hash and size
|
| 409 |
-
- provenance fields where documented
|
| 410 |
-
|
| 411 |
-
Files use a structured filename convention described in `SCHEMA.md`. A
|
| 412 |
-
filename is descriptive, but it is not the stable identity of a record;
|
| 413 |
-
external references should use `record_id`.
|
| 414 |
-
|
| 415 |
-
### `Standard_Time_Lapses/Provenance/`
|
| 416 |
-
|
| 417 |
-
This subtree contains supporting historical records and retained exceptions.
|
| 418 |
-
It is not part of the canonical record set.
|
| 419 |
-
|
| 420 |
-
`2026-07-31/` preserves the completed provenance release, including mappings
|
| 421 |
-
between historical `Series_9x12` filenames and canonical records. The former
|
| 422 |
-
full duplicate video snapshot is not retained. Relationships are preserved
|
| 423 |
-
through mappings, hashes, metadata, and repository history.
|
| 424 |
-
|
| 425 |
-
`Unresolved_Series_9x12/` contains distinct historical recordings that do not
|
| 426 |
-
yet have enough documentation for promotion into the canonical collection.
|
| 427 |
-
|
| 428 |
-
### `Pre_Standard_Time_Lapses/`
|
| 429 |
-
|
| 430 |
-
These 128 recordings predate the standard acquisition protocol. They are
|
| 431 |
-
published for archival continuity but are not interchangeable with canonical
|
| 432 |
-
standard records. Each now has a stable `record_id`, exact Hub content hash and
|
| 433 |
-
size, playback duration, stored dimensions and orientation, frame rate, codec,
|
| 434 |
-
pixel format, container, and audio-stream presence. Historical dates, times,
|
| 435 |
-
materials, and provenance remain incomplete where evidence is unavailable.
|
| 436 |
-
Missing values must not be interpreted as zero, false, or evidence that a
|
| 437 |
-
property was absent.
|
| 438 |
-
|
| 439 |
-
The folder-local `metadata.csv` is the active index for these 128 videos and is
|
| 440 |
-
loaded by the `pre_standard/archive` configuration. It follows the same
|
| 441 |
-
declared 29-field schema as the canonical index while leaving undocumented
|
| 442 |
-
historical fields empty.
|
| 443 |
-
|
| 444 |
-
Material that does not meet the archive's ownership and provenance threshold
|
| 445 |
-
is excluded from both the published media and the active metadata index.
|
| 446 |
-
|
| 447 |
-
### `Earlier_Archive_2012_2016/`
|
| 448 |
-
|
| 449 |
-
More than 8 TB of earlier material is held outside this dataset. It consists
|
| 450 |
-
primarily of uploaded 1080p drawing videos, with some livestream-derived
|
| 451 |
-
material. At the audited snapshot it contains no public video data. References
|
| 452 |
-
to 2012–2016 therefore describe archive scope, not current downloadable
|
| 453 |
-
coverage.
|
| 454 |
-
|
| 455 |
-
## Metadata and Provenance
|
| 456 |
-
|
| 457 |
-
The metadata distinguishes documented facts, established historical
|
| 458 |
-
relationships, and unresolved information. Evidence may include:
|
| 459 |
-
|
| 460 |
-
- exact file/blob identity
|
| 461 |
-
- original filenames and repository paths
|
| 462 |
-
- file sizes and hashes
|
| 463 |
-
- duration comparison
|
| 464 |
-
- visual continuity across recordings
|
| 465 |
-
- documented physical references
|
| 466 |
-
- repository commit history
|
| 467 |
-
|
| 468 |
-
Uncertain relationships are not promoted to verified relationships solely
|
| 469 |
-
because dates or filenames look similar.
|
| 470 |
-
|
| 471 |
-
The active CSV files and live Viewer use semicolons for multiple `tool` and
|
| 472 |
-
`medium` values, for example `Pencil;FountainPen` and `Graphite;Ink`. A pipe
|
| 473 |
-
(`|`) is **not** a valid separator in v0.2. The two fields are independent
|
| 474 |
-
observed-value lists; equal list lengths and positional pairing are not
|
| 475 |
-
guaranteed. See `SCHEMA.md`.
|
| 476 |
-
|
| 477 |
-
`encoded_frame_rate` is encoded playback rate. It is not the original temporal
|
| 478 |
-
sampling rate of the drawing process.
|
| 479 |
-
|
| 480 |
-
## Acquisition and Stored-Video Orientation
|
| 481 |
-
|
| 482 |
-
The acquisition protocol effective July 13, 2025 is documented in
|
| 483 |
-
`Archive_Specifications.md`.
|
| 484 |
-
|
| 485 |
-
The protocol's capture orientation and a file's stored pixel orientation are
|
| 486 |
-
different concepts. The `orientation`, `width_px`, and `height_px` metadata
|
| 487 |
-
describe the published encoded file. Historical canonicalization may include a
|
| 488 |
-
rotation, crop, or transcode; those transformations are documented only where
|
| 489 |
-
evidence currently exists and must not be inferred from dimensions alone.
|
| 490 |
-
|
| 491 |
-
The July 13, 2025 protocol boundary is explicitly encoded in canonical
|
| 492 |
-
metadata. It supports era-aware comparison of repeated physical-media practice,
|
| 493 |
-
but it is an acquisition change, not a skill-change label. Differences across
|
| 494 |
-
that boundary may reflect capture conditions as well as practice development.
|
| 495 |
-
|
| 496 |
-
## Annotation State
|
| 497 |
-
|
| 498 |
-
Session-level descriptive and provenance metadata are curated by the creator
|
| 499 |
-
from the physical practice, filenames, file properties, and retained historical
|
| 500 |
-
evidence. This is the scope of `annotations_creators: expert-generated`; it does
|
| 501 |
-
not mean that frame-level task labels exist. Likewise, `language: en` describes
|
| 502 |
-
the filename vocabulary, metadata, and documentation, not incidental audio.
|
| 503 |
-
|
| 504 |
-
The `video-classification` task facet refers to possible session-level targets
|
| 505 |
-
such as documented tool, medium, and support. The release does not define label
|
| 506 |
-
encodings, an official benchmark, or train/validation/test partitions.
|
| 507 |
-
|
| 508 |
-
The videos themselves are primarily raw and unannotated. The release does not
|
| 509 |
-
provide:
|
| 510 |
-
|
| 511 |
-
- frame-level bounding boxes or segmentation masks
|
| 512 |
-
- hand, pen-tip, pose, or stroke labels
|
| 513 |
-
- aesthetic or quality scores
|
| 514 |
-
- imposed stylistic classifications
|
| 515 |
-
- calibrated physical trajectories
|
| 516 |
-
- original capture timestamps for individual time-lapse frames
|
| 517 |
-
|
| 518 |
-
Researchers may derive annotations, but derived labels should identify the
|
| 519 |
-
source `record_id` and pinned repository revision.
|
| 520 |
-
|
| 521 |
-
## Intended and Unsupported Uses
|
| 522 |
-
|
| 523 |
-
### Reasonable uses in the current release
|
| 524 |
-
|
| 525 |
-
- archival and drawing-process research
|
| 526 |
-
- qualitative within-creator analysis of practice and skill development across
|
| 527 |
-
repeated physical-media sessions
|
| 528 |
-
- self-supervised video representation experiments
|
| 529 |
-
- frame-change, scene, and workspace analysis
|
| 530 |
-
- development of annotation and tracking methods
|
| 531 |
-
|
| 532 |
-
### Uses requiring additional validation or calibration
|
| 533 |
-
|
| 534 |
-
- hand or pen-tip tracking
|
| 535 |
-
- optical-flow comparison across acquisition eras
|
| 536 |
-
- temporal behavior analysis
|
| 537 |
-
- real-world trajectory, velocity, acceleration, or motor-control measurement
|
| 538 |
-
|
| 539 |
-
The release does not currently provide capture intervals, acceleration factors,
|
| 540 |
-
source-frame timestamps, camera calibration, or pixel-to-physical coordinate
|
| 541 |
-
mapping. Encoded time-lapse playback must not be treated as real drawing time.
|
| 542 |
-
|
| 543 |
-
### Not validated
|
| 544 |
-
|
| 545 |
-
- population-level claims about artists or drawing behavior
|
| 546 |
-
- clinical, biometric, authorship, or identity inference
|
| 547 |
-
- a leakage-safe training or evaluation benchmark
|
| 548 |
-
- commercial use outside the CC BY-NC 4.0 terms
|
| 549 |
-
|
| 550 |
-
## Limitations and Sources of Bias
|
| 551 |
-
|
| 552 |
-
- The archive documents one creator and one evolving practice.
|
| 553 |
-
- Current public video coverage begins in 2024, not 2012.
|
| 554 |
-
- The standard and pre-standard tiers have substantially different historical
|
| 555 |
-
descriptive/provenance completeness and acquisition conditions.
|
| 556 |
-
- The workspace can contain hands, tools, phones, tablets, reference material,
|
| 557 |
-
and other objects that may create visual shortcuts or occlusion.
|
| 558 |
-
- Stored resolution and frame rate do not establish physical or temporal
|
| 559 |
-
calibration.
|
| 560 |
-
- Large files make exhaustive inspection and replication expensive.
|
| 561 |
-
- No official leakage-safe split exists.
|
| 562 |
-
|
| 563 |
-
## Rights, Privacy, and Audio
|
| 564 |
-
|
| 565 |
-
The creator confirms ownership of the published video files and depicted
|
| 566 |
-
creator-owned drawings. Material that cannot pass the ownership and provenance
|
| 567 |
-
review is not part of the active public index and is not distributed by this
|
| 568 |
-
release. This statement does not independently grant rights in incidental
|
| 569 |
-
third-party material that may appear on screens, in references, or in captured
|
| 570 |
-
audio.
|
| 571 |
-
|
| 572 |
-
Nearly all published masters retain an audio stream. `has_audio` records stream
|
| 573 |
-
presence only; it does not establish that the stream contains meaningful
|
| 574 |
-
signal. Users are responsible for reviewing audio, visible screens, references,
|
| 575 |
-
reflections, tattoos, and other potentially identifying or third-party content
|
| 576 |
-
before redistribution or model release. A future proxy release should remove
|
| 577 |
-
audio by default while preserving the archival masters.
|
| 578 |
-
|
| 579 |
-
## Access and Reproducibility
|
| 580 |
-
|
| 581 |
-
The active 490-video release contains 1,984,749,320,057 bytes of video
|
| 582 |
-
(approximately 1.98 TB, or 1.81 TiB). Canonical files are often several
|
| 583 |
-
gigabytes each, so users should select records through `metadata.csv` before
|
| 584 |
-
downloading video.
|
| 585 |
-
|
| 586 |
-
### Bandwidth-safe Quick Start
|
| 587 |
-
|
| 588 |
-
Install Hugging Face Datasets, stream the archive, and disable decoding while
|
| 589 |
-
selecting records:
|
| 590 |
-
|
| 591 |
-
```python
|
| 592 |
-
from datasets import Video, load_dataset
|
| 593 |
-
|
| 594 |
-
dataset = load_dataset(
|
| 595 |
-
"maxwellinked/time-lapse-artifacts",
|
| 596 |
-
"canonical",
|
| 597 |
-
split="archive",
|
| 598 |
-
streaming=True,
|
| 599 |
-
)
|
| 600 |
-
metadata = dataset.cast_column("video", Video(decode=False))
|
| 601 |
-
first = next(iter(metadata))
|
| 602 |
-
print(first["video"]["path"], first["tool"], first["medium"])
|
| 603 |
-
```
|
| 604 |
-
|
| 605 |
-
This exposes the complete metadata schema without transferring video bytes.
|
| 606 |
-
Default decoded row access additionally requires `torchcodec` and a compatible
|
| 607 |
-
video-decoding stack. Use `streaming=True` unless a full archive download is
|
| 608 |
-
intentional.
|
| 609 |
-
|
| 610 |
Use `"pre_standard"` as the configuration name to stream the earlier tier.
|
| 611 |
|
| 612 |
-
|
| 613 |
-
|
| 614 |
-
1. Pin a repository commit or release tag.
|
| 615 |
-
2. Record the selected `record_id` values.
|
| 616 |
-
3. Preserve the published `hub_xet_hash` values.
|
| 617 |
-
4. State whether audio was retained.
|
| 618 |
-
5. Document all rotation, crop, sampling, decoding, and proxy-generation steps.
|
| 619 |
|
| 620 |
-
|
|
|
|
| 621 |
|
| 622 |
```bash
|
| 623 |
-
python
|
| 624 |
-
--pre-standard-metadata Pre_Standard_Time_Lapses/metadata.csv
|
| 625 |
```
|
| 626 |
|
| 627 |
-
|
| 628 |
-
|
| 629 |
-
|
| 630 |
-
`tools/capture_hub_inventory.py` records the corresponding Xet file IDs from
|
| 631 |
-
resolve headers without following redirects or transferring video payloads.
|
| 632 |
|
| 633 |
-
|
| 634 |
-
three audited additions:
|
| 635 |
|
| 636 |
```bash
|
| 637 |
-
python tools/
|
| 638 |
-
--additions tools/metadata_additions_v0.2.csv
|
| 639 |
```
|
| 640 |
|
| 641 |
-
|
| 642 |
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
See `CHANGELOG.md` for release-level changes.
|
| 649 |
|
| 650 |
-
|
|
|
|
|
|
|
| 651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 652 |
- `metadata.csv` — canonical machine-readable index
|
| 653 |
- `Pre_Standard_Time_Lapses/metadata.csv` — active pre-standard public index
|
|
|
|
| 654 |
- `SCHEMA.md` — filename and metadata contracts
|
| 655 |
- `Archive_Specifications.md` — acquisition specifications and known gaps
|
| 656 |
- `VALIDATION.md` — validation scope and current results
|
|
|
|
|
|
|
| 657 |
- `tools/capture_hub_inventory.py` — pinned Hub/Xet identity inventory
|
|
|
|
| 658 |
- `tools/enrich_prestandard.py` — pinned Pre-Standard technical enrichment
|
| 659 |
-
- `tools/validate_metadata.py` — cross-tier metadata and repository checks
|
| 660 |
-
- `Standard_Time_Lapses/Provenance/` — historical evidence and mappings
|
| 661 |
-
|
| 662 |
-
## Citation
|
| 663 |
-
|
| 664 |
-
Until a DOI-backed release is available, cite the dataset and pinned revision:
|
| 665 |
-
|
| 666 |
-
```bibtex
|
| 667 |
-
@dataset{maxwellinked_time_lapse_artifacts_2026,
|
| 668 |
-
author = {maxwellinked},
|
| 669 |
-
title = {time-lapse-artifacts},
|
| 670 |
-
year = {2026},
|
| 671 |
-
publisher = {Hugging Face},
|
| 672 |
-
url = {https://huggingface.co/datasets/maxwellinked/time-lapse-artifacts},
|
| 673 |
-
note = {Active construction release; include the repository revision used}
|
| 674 |
-
}
|
| 675 |
-
```
|
| 676 |
-
|
| 677 |
-
## License
|
| 678 |
-
|
| 679 |
-
The dataset is released under **CC BY-NC 4.0**. The license applies only to
|
| 680 |
-
material for which the licensor holds the necessary rights. Users must conduct
|
| 681 |
-
their own review of incidental third-party content and downstream use.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pretty_name: Time-Lapse Artifacts
|
| 4 |
+
annotations_creators:
|
| 5 |
+
- expert-generated
|
| 6 |
+
source_datasets:
|
| 7 |
+
- original
|
| 8 |
+
size_categories:
|
| 9 |
+
- n<1K
|
| 10 |
+
task_categories:
|
| 11 |
+
- video-classification
|
| 12 |
+
- feature-extraction
|
| 13 |
+
tags:
|
| 14 |
+
- drawing
|
| 15 |
+
- longitudinal-study
|
| 16 |
+
- traditional-art
|
| 17 |
+
- provenance
|
| 18 |
+
- single-subject
|
| 19 |
+
- video
|
| 20 |
+
- computer-vision
|
| 21 |
+
- time-lapse
|
| 22 |
+
- human-motion
|
| 23 |
+
dataset_info:
|
| 24 |
+
- config_name: canonical
|
| 25 |
+
features:
|
| 26 |
+
- name: video
|
| 27 |
+
dtype: video
|
| 28 |
+
- name: record_id
|
| 29 |
+
dtype: large_string
|
| 30 |
+
- name: collection_tier
|
| 31 |
+
dtype: large_string
|
| 32 |
+
- name: is_canonical
|
| 33 |
+
dtype: bool
|
| 34 |
+
- name: acquisition_protocol_version
|
| 35 |
+
dtype: large_string
|
| 36 |
+
- name: date
|
| 37 |
+
dtype: large_string
|
| 38 |
+
- name: time
|
| 39 |
+
dtype: large_string
|
| 40 |
+
- name: tool
|
| 41 |
+
dtype: large_string
|
| 42 |
+
- name: medium
|
| 43 |
+
dtype: large_string
|
| 44 |
+
- name: support
|
| 45 |
+
dtype: large_string
|
| 46 |
+
- name: dimensions
|
| 47 |
+
dtype: large_string
|
| 48 |
+
- name: duration_seconds
|
| 49 |
+
dtype: float64
|
| 50 |
+
- name: width_px
|
| 51 |
+
dtype: int64
|
| 52 |
+
- name: height_px
|
| 53 |
+
dtype: int64
|
| 54 |
+
- name: orientation
|
| 55 |
+
dtype: large_string
|
| 56 |
+
- name: encoded_frame_rate
|
| 57 |
+
dtype: float64
|
| 58 |
+
- name: video_codec
|
| 59 |
+
dtype: large_string
|
| 60 |
+
- name: pixel_format
|
| 61 |
+
dtype: large_string
|
| 62 |
+
- name: container
|
| 63 |
+
dtype: large_string
|
| 64 |
+
- name: has_audio
|
| 65 |
+
dtype: bool
|
| 66 |
+
- name: hub_xet_hash
|
| 67 |
+
dtype: large_string
|
| 68 |
+
- name: original_filename
|
| 69 |
+
dtype: large_string
|
| 70 |
+
- name: provenance_status
|
| 71 |
+
dtype: large_string
|
| 72 |
+
- name: legacy_provenance_path
|
| 73 |
+
dtype: large_string
|
| 74 |
+
- name: legacy_related_references
|
| 75 |
+
dtype: large_string
|
| 76 |
+
- name: evidence_method
|
| 77 |
+
dtype: large_string
|
| 78 |
+
- name: provenance_reference_duration_delta_seconds
|
| 79 |
+
dtype: float64
|
| 80 |
+
- name: size_bytes
|
| 81 |
+
dtype: int64
|
| 82 |
+
- name: notes
|
| 83 |
+
dtype: large_string
|
| 84 |
+
splits:
|
| 85 |
+
- name: archive
|
| 86 |
+
num_examples: 362
|
| 87 |
+
- config_name: pre_standard
|
| 88 |
+
features:
|
| 89 |
+
- name: video
|
| 90 |
+
dtype: video
|
| 91 |
+
- name: record_id
|
| 92 |
+
dtype: large_string
|
| 93 |
+
- name: collection_tier
|
| 94 |
+
dtype: large_string
|
| 95 |
+
- name: is_canonical
|
| 96 |
+
dtype: bool
|
| 97 |
+
- name: acquisition_protocol_version
|
| 98 |
+
dtype: large_string
|
| 99 |
+
- name: date
|
| 100 |
+
dtype: large_string
|
| 101 |
+
- name: time
|
| 102 |
+
dtype: large_string
|
| 103 |
+
- name: tool
|
| 104 |
+
dtype: large_string
|
| 105 |
+
- name: medium
|
| 106 |
+
dtype: large_string
|
| 107 |
+
- name: support
|
| 108 |
+
dtype: large_string
|
| 109 |
+
- name: dimensions
|
| 110 |
+
dtype: large_string
|
| 111 |
+
- name: duration_seconds
|
| 112 |
+
dtype: float64
|
| 113 |
+
- name: width_px
|
| 114 |
+
dtype: int64
|
| 115 |
+
- name: height_px
|
| 116 |
+
dtype: int64
|
| 117 |
+
- name: orientation
|
| 118 |
+
dtype: large_string
|
| 119 |
+
- name: encoded_frame_rate
|
| 120 |
+
dtype: float64
|
| 121 |
+
- name: video_codec
|
| 122 |
+
dtype: large_string
|
| 123 |
+
- name: pixel_format
|
| 124 |
+
dtype: large_string
|
| 125 |
+
- name: container
|
| 126 |
+
dtype: large_string
|
| 127 |
+
- name: has_audio
|
| 128 |
+
dtype: bool
|
| 129 |
+
- name: hub_xet_hash
|
| 130 |
+
dtype: large_string
|
| 131 |
+
- name: original_filename
|
| 132 |
+
dtype: large_string
|
| 133 |
+
- name: provenance_status
|
| 134 |
+
dtype: large_string
|
| 135 |
+
- name: legacy_provenance_path
|
| 136 |
+
dtype: large_string
|
| 137 |
+
- name: legacy_related_references
|
| 138 |
+
dtype: large_string
|
| 139 |
+
- name: evidence_method
|
| 140 |
+
dtype: large_string
|
| 141 |
+
- name: provenance_reference_duration_delta_seconds
|
| 142 |
+
dtype: float64
|
| 143 |
+
- name: size_bytes
|
| 144 |
+
dtype: int64
|
| 145 |
+
- name: notes
|
| 146 |
+
dtype: large_string
|
| 147 |
+
splits:
|
| 148 |
+
- name: archive
|
| 149 |
+
num_examples: 128
|
| 150 |
+
configs:
|
| 151 |
+
- config_name: canonical
|
| 152 |
+
default: true
|
| 153 |
+
features:
|
| 154 |
+
- name: video
|
| 155 |
+
dtype: video
|
| 156 |
+
- name: record_id
|
| 157 |
+
dtype: large_string
|
| 158 |
+
- name: collection_tier
|
| 159 |
+
dtype: large_string
|
| 160 |
+
- name: is_canonical
|
| 161 |
+
dtype: bool
|
| 162 |
+
- name: acquisition_protocol_version
|
| 163 |
+
dtype: large_string
|
| 164 |
+
- name: date
|
| 165 |
+
dtype: large_string
|
| 166 |
+
- name: time
|
| 167 |
+
dtype: large_string
|
| 168 |
+
- name: tool
|
| 169 |
+
dtype: large_string
|
| 170 |
+
- name: medium
|
| 171 |
+
dtype: large_string
|
| 172 |
+
- name: support
|
| 173 |
+
dtype: large_string
|
| 174 |
+
- name: dimensions
|
| 175 |
+
dtype: large_string
|
| 176 |
+
- name: duration_seconds
|
| 177 |
+
dtype: float64
|
| 178 |
+
- name: width_px
|
| 179 |
+
dtype: int64
|
| 180 |
+
- name: height_px
|
| 181 |
+
dtype: int64
|
| 182 |
+
- name: orientation
|
| 183 |
+
dtype: large_string
|
| 184 |
+
- name: encoded_frame_rate
|
| 185 |
+
dtype: float64
|
| 186 |
+
- name: video_codec
|
| 187 |
+
dtype: large_string
|
| 188 |
+
- name: pixel_format
|
| 189 |
+
dtype: large_string
|
| 190 |
+
- name: container
|
| 191 |
+
dtype: large_string
|
| 192 |
+
- name: has_audio
|
| 193 |
+
dtype: bool
|
| 194 |
+
- name: hub_xet_hash
|
| 195 |
+
dtype: large_string
|
| 196 |
+
- name: original_filename
|
| 197 |
+
dtype: large_string
|
| 198 |
+
- name: provenance_status
|
| 199 |
+
dtype: large_string
|
| 200 |
+
- name: legacy_provenance_path
|
| 201 |
+
dtype: large_string
|
| 202 |
+
- name: legacy_related_references
|
| 203 |
+
dtype: large_string
|
| 204 |
+
- name: evidence_method
|
| 205 |
+
dtype: large_string
|
| 206 |
+
- name: provenance_reference_duration_delta_seconds
|
| 207 |
+
dtype: float64
|
| 208 |
+
- name: size_bytes
|
| 209 |
+
dtype: int64
|
| 210 |
+
- name: notes
|
| 211 |
+
dtype: large_string
|
| 212 |
+
data_files:
|
| 213 |
+
- split: archive
|
| 214 |
+
path:
|
| 215 |
+
- metadata.csv
|
| 216 |
+
- Standard_Time_Lapses/*.mp4
|
| 217 |
+
- config_name: pre_standard
|
| 218 |
+
features:
|
| 219 |
+
- name: video
|
| 220 |
+
dtype: video
|
| 221 |
+
- name: record_id
|
| 222 |
+
dtype: large_string
|
| 223 |
+
- name: collection_tier
|
| 224 |
+
dtype: large_string
|
| 225 |
+
- name: is_canonical
|
| 226 |
+
dtype: bool
|
| 227 |
+
- name: acquisition_protocol_version
|
| 228 |
+
dtype: large_string
|
| 229 |
+
- name: date
|
| 230 |
+
dtype: large_string
|
| 231 |
+
- name: time
|
| 232 |
+
dtype: large_string
|
| 233 |
+
- name: tool
|
| 234 |
+
dtype: large_string
|
| 235 |
+
- name: medium
|
| 236 |
+
dtype: large_string
|
| 237 |
+
- name: support
|
| 238 |
+
dtype: large_string
|
| 239 |
+
- name: dimensions
|
| 240 |
+
dtype: large_string
|
| 241 |
+
- name: duration_seconds
|
| 242 |
+
dtype: float64
|
| 243 |
+
- name: width_px
|
| 244 |
+
dtype: int64
|
| 245 |
+
- name: height_px
|
| 246 |
+
dtype: int64
|
| 247 |
+
- name: orientation
|
| 248 |
+
dtype: large_string
|
| 249 |
+
- name: encoded_frame_rate
|
| 250 |
+
dtype: float64
|
| 251 |
+
- name: video_codec
|
| 252 |
+
dtype: large_string
|
| 253 |
+
- name: pixel_format
|
| 254 |
+
dtype: large_string
|
| 255 |
+
- name: container
|
| 256 |
+
dtype: large_string
|
| 257 |
+
- name: has_audio
|
| 258 |
+
dtype: bool
|
| 259 |
+
- name: hub_xet_hash
|
| 260 |
+
dtype: large_string
|
| 261 |
+
- name: original_filename
|
| 262 |
+
dtype: large_string
|
| 263 |
+
- name: provenance_status
|
| 264 |
+
dtype: large_string
|
| 265 |
+
- name: legacy_provenance_path
|
| 266 |
+
dtype: large_string
|
| 267 |
+
- name: legacy_related_references
|
| 268 |
+
dtype: large_string
|
| 269 |
+
- name: evidence_method
|
| 270 |
+
dtype: large_string
|
| 271 |
+
- name: provenance_reference_duration_delta_seconds
|
| 272 |
+
dtype: float64
|
| 273 |
+
- name: size_bytes
|
| 274 |
+
dtype: int64
|
| 275 |
+
- name: notes
|
| 276 |
+
dtype: large_string
|
| 277 |
+
data_files:
|
| 278 |
+
- split: archive
|
| 279 |
+
path:
|
| 280 |
+
- Pre_Standard_Time_Lapses/metadata.csv
|
| 281 |
+
- Pre_Standard_Time_Lapses/*.mp4
|
| 282 |
+
---
|
| 283 |
+
|
| 284 |
+
# time-lapse-artifacts
|
| 285 |
+
|
| 286 |
+
490 time-lapse recordings of one artist's traditional drawing practice across
|
| 287 |
+
nearly two years (September 2024–August 22, 2026), with standardized acquisition
|
| 288 |
+
since July 13, 2025. Across approximately 1.98 TB of video, the archive follows
|
| 289 |
+
the same artist working in physical media—including pencil, ballpoint pen,
|
| 290 |
+
fountain pen, brush, graphite, and ink—on fixed-format paper and illustration board.
|
| 291 |
+
The release combines 362 canonical Standard videos and 128 earlier
|
| 292 |
+
Pre-Standard recordings. Every published video has a persistent record ID,
|
| 293 |
+
content hash, byte size, and encoded-stream metadata; historical session and
|
| 294 |
+
provenance fields remain less complete in the Pre-Standard tier.
|
| 295 |
+
|
| 296 |
+
In this dataset, provenance refers to the documented relationship between a
|
| 297 |
+
physical drawing and its time-lapse record, rather than to histories of
|
| 298 |
+
ownership or sale.
|
| 299 |
+
|
| 300 |
+
An earlier 2012–2016 archive of more than 8 TB also exists, consisting
|
| 301 |
+
primarily of uploaded 1080p drawing videos, with some livestream-derived
|
| 302 |
+
material. It is not yet published in this dataset and is excluded from the
|
| 303 |
+
current 490-record, 1.98-TB release totals. This is an active construction
|
| 304 |
+
release.
|
| 305 |
+
|
| 306 |
+
## Snapshot and Coverage
|
| 307 |
+
|
| 308 |
+
These counts describe the current `main` branch. The immutable `v0.3.0` tag
|
| 309 |
+
contains 467 rows: 338 Standard and 129 Pre-Standard. A later curator-verified
|
| 310 |
+
provenance correction promoted one distinct Standard recording from the
|
| 311 |
+
noncanonical unresolved subtree. A subsequent creator-verified ingestion added
|
| 312 |
+
17 unique Standard media objects. A subsequent creator-verified tier review
|
| 313 |
+
promoted the clean July 13 recording without changing its payload or stable
|
| 314 |
+
identity, bringing the prior `main` state to 357 Standard and 128 Pre-Standard
|
| 315 |
+
records. The next ingestion added three creator-verified August 2026 Standard
|
| 316 |
+
recordings, including the first 14 × 17 in record and the first member of a
|
| 317 |
+
recording sequence for which `Rec02` remains expected. This update adds the first
|
| 318 |
+
two recordings in a separate August 22 14 × 17 in sequence; `Rec03` is expected,
|
| 319 |
+
and the sequence endpoint is not yet claimed.
|
| 320 |
+
A later creator-confirmed filename correction preserves the complete
|
| 321 |
+
`Rec01`–`Rec15` order of 15 existing 30 × 40 in recordings dated June 18–30.
|
| 322 |
+
Their media payloads, stable IDs, hashes, metadata membership, and release
|
| 323 |
+
counts are unchanged.
|
| 324 |
+
Two records from the 17-object ingestion and the promoted July 13 record are
|
| 325 |
+
explicitly documented as shortened derivatives rather than full-duration
|
| 326 |
+
masters.
|
| 327 |
+
|
| 328 |
+
| Collection tier | Published MP4s | Indexed rows | Date coverage | Metadata state |
|
| 329 |
+
| --- | ---: | ---: | --- | --- |
|
| 330 |
+
| `standard` | 362 direct files | 362 | 2025-07-13–2026-08-22 | Complete core technical metadata for every direct Standard file |
|
| 331 |
+
| `pre_standard` | 128 | 128 | 2024-09-17–2025-07-09, plus 9 unknown dates | Complete core technical metadata; historical descriptive and provenance gaps remain |
|
| 332 |
+
| Earlier archive (unpublished) | 0 public videos | 0 | Historical scope 2012–2016 | More than 8 TB held outside this release; ingestion pending |
|
| 333 |
+
|
| 334 |
+
**Current published index:** `main` contains 490 rows: 362 Standard and 128
|
| 335 |
+
Pre-Standard. The preceding v0.1 state at revision
|
| 336 |
+
`339e6149de130cbe2d001f7a0e5247872bc788ec` exposed 465 rows: 335 Standard and
|
| 337 |
+
130 Pre-Standard. v0.2 added three previously unindexed Standard files and
|
| 338 |
+
removed one Pre-Standard row whose media did not meet the ownership and
|
| 339 |
+
provenance threshold. v0.3 added stable Pre-Standard identities and technical
|
| 340 |
+
metadata. The post-v0.3 provenance correction promotes one previously
|
| 341 |
+
unresolved, distinct Standard recording and corrects a separate record's
|
| 342 |
+
physical finish date and time. The later 17-record Standard ingestion applies
|
| 343 |
+
technical and provenance criteria without filtering records by aesthetic
|
| 344 |
+
completion or perceived artistic quality. The later July 13 promotion applies
|
| 345 |
+
the same rule to a clean shortened record and moves the documented Standard
|
| 346 |
+
boundary coherently rather than creating a one-file exception.
|
| 347 |
+
|
| 348 |
+
The Hub configurations use the split name `archive`. No official
|
| 349 |
+
train/validation/test partition has been defined.
|
| 350 |
+
|
| 351 |
+
## Viewer and Metadata Discovery
|
| 352 |
+
|
| 353 |
+
The release exposes two explicit configurations so metadata-complete canonical
|
| 354 |
+
records are not silently mixed with historically less complete records:
|
| 355 |
+
|
| 356 |
+
- `canonical/archive` is the default and loads root `metadata.csv` with the 362
|
| 357 |
+
direct files in `Standard_Time_Lapses/`
|
| 358 |
+
- `pre_standard/archive` loads `Pre_Standard_Time_Lapses/metadata.csv` with the
|
| 359 |
+
128 direct files in that folder
|
| 360 |
+
|
| 361 |
+
Each configuration has the same declared 29-column schema. Stored dimensions
|
| 362 |
+
and byte sizes are nullable integers, `has_audio` is a nullable boolean, and
|
| 363 |
+
encoded frame rate remains a float because historical encodings include
|
| 364 |
+
fractional reported rates. Undocumented values load as null rather than as
|
| 365 |
+
zero or false. Both indexes declare tier membership directly: the root index sets
|
| 366 |
+
`collection_tier = standard` and `is_canonical = true`; the Pre-Standard CSV
|
| 367 |
+
sets `collection_tier = pre_standard` and `is_canonical = false`.
|
| 368 |
+
|
| 369 |
+
Published-index completeness is defined by the 362 rows in `canonical/archive`
|
| 370 |
+
plus the 128 rows in `pre_standard/archive` and their generated Parquet
|
| 371 |
+
exports. Hugging Face's separate column Statistics job is an auxiliary,
|
| 372 |
+
asynchronous surface; its availability is not used to claim or reject
|
| 373 |
+
row-level completeness.
|
| 374 |
+
|
| 375 |
+
The configuration lists the two active `metadata.csv` files and only direct
|
| 376 |
+
MP4 paths in `Standard_Time_Lapses/` and `Pre_Standard_Time_Lapses/`. It does
|
| 377 |
+
not use a recursive canonical glob, so the nested
|
| 378 |
+
`Standard_Time_Lapses/Provenance/` subtree is excluded.
|
| 379 |
+
|
| 380 |
+
## Overview
|
| 381 |
+
|
| 382 |
+
`time-lapse-artifacts` documents analog drawing processes across different
|
| 383 |
+
recording periods and acquisition conditions. Raw video is the primary record.
|
| 384 |
+
Metadata identifies, organizes, compares, and documents recordings without
|
| 385 |
+
imposing aesthetic scores or stylistic labels.
|
| 386 |
+
|
| 387 |
+
The collection is a single-creator longitudinal archive. This makes it useful
|
| 388 |
+
for studying within-practice change, but it does not represent artists,
|
| 389 |
+
materials, studios, or drawing practices broadly.
|
| 390 |
+
|
| 391 |
+
## Repository Structure
|
| 392 |
+
|
| 393 |
+
### `Standard_Time_Lapses/`
|
| 394 |
+
|
| 395 |
+
The directory contains 362 direct MP4 files. `metadata.csv` is their complete
|
| 396 |
+
machine-readable canonical index: every direct file has one validated row with
|
| 397 |
+
core technical metadata. Direct placement alone is not sufficient for future
|
| 398 |
+
additions; metadata and release validation are required.
|
| 399 |
+
|
| 400 |
+
Each canonical metadata row now includes:
|
| 401 |
+
|
| 402 |
+
- a persistent `record_id`
|
| 403 |
+
- `collection_tier = standard`
|
| 404 |
+
- `is_canonical = true`
|
| 405 |
+
- `acquisition_protocol_version = standard-2025-07-13`
|
| 406 |
+
- descriptive session fields
|
| 407 |
+
- encoded video properties
|
| 408 |
+
- repository content hash and size
|
| 409 |
+
- provenance fields where documented
|
| 410 |
+
|
| 411 |
+
Files use a structured filename convention described in `SCHEMA.md`. A
|
| 412 |
+
filename is descriptive, but it is not the stable identity of a record;
|
| 413 |
+
external references should use `record_id`.
|
| 414 |
+
|
| 415 |
+
### `Standard_Time_Lapses/Provenance/`
|
| 416 |
+
|
| 417 |
+
This subtree contains supporting historical records and retained exceptions.
|
| 418 |
+
It is not part of the canonical record set.
|
| 419 |
+
|
| 420 |
+
`2026-07-31/` preserves the completed provenance release, including mappings
|
| 421 |
+
between historical `Series_9x12` filenames and canonical records. The former
|
| 422 |
+
full duplicate video snapshot is not retained. Relationships are preserved
|
| 423 |
+
through mappings, hashes, metadata, and repository history.
|
| 424 |
+
|
| 425 |
+
`Unresolved_Series_9x12/` contains distinct historical recordings that do not
|
| 426 |
+
yet have enough documentation for promotion into the canonical collection.
|
| 427 |
+
|
| 428 |
+
### `Pre_Standard_Time_Lapses/`
|
| 429 |
+
|
| 430 |
+
These 128 recordings predate the standard acquisition protocol. They are
|
| 431 |
+
published for archival continuity but are not interchangeable with canonical
|
| 432 |
+
standard records. Each now has a stable `record_id`, exact Hub content hash and
|
| 433 |
+
size, playback duration, stored dimensions and orientation, frame rate, codec,
|
| 434 |
+
pixel format, container, and audio-stream presence. Historical dates, times,
|
| 435 |
+
materials, and provenance remain incomplete where evidence is unavailable.
|
| 436 |
+
Missing values must not be interpreted as zero, false, or evidence that a
|
| 437 |
+
property was absent.
|
| 438 |
+
|
| 439 |
+
The folder-local `metadata.csv` is the active index for these 128 videos and is
|
| 440 |
+
loaded by the `pre_standard/archive` configuration. It follows the same
|
| 441 |
+
declared 29-field schema as the canonical index while leaving undocumented
|
| 442 |
+
historical fields empty.
|
| 443 |
+
|
| 444 |
+
Material that does not meet the archive's ownership and provenance threshold
|
| 445 |
+
is excluded from both the published media and the active metadata index.
|
| 446 |
+
|
| 447 |
+
### `Earlier_Archive_2012_2016/`
|
| 448 |
+
|
| 449 |
+
More than 8 TB of earlier material is held outside this dataset. It consists
|
| 450 |
+
primarily of uploaded 1080p drawing videos, with some livestream-derived
|
| 451 |
+
material. At the audited snapshot it contains no public video data. References
|
| 452 |
+
to 2012–2016 therefore describe archive scope, not current downloadable
|
| 453 |
+
coverage.
|
| 454 |
+
|
| 455 |
+
## Metadata and Provenance
|
| 456 |
+
|
| 457 |
+
The metadata distinguishes documented facts, established historical
|
| 458 |
+
relationships, and unresolved information. Evidence may include:
|
| 459 |
+
|
| 460 |
+
- exact file/blob identity
|
| 461 |
+
- original filenames and repository paths
|
| 462 |
+
- file sizes and hashes
|
| 463 |
+
- duration comparison
|
| 464 |
+
- visual continuity across recordings
|
| 465 |
+
- documented physical references
|
| 466 |
+
- repository commit history
|
| 467 |
+
|
| 468 |
+
Uncertain relationships are not promoted to verified relationships solely
|
| 469 |
+
because dates or filenames look similar.
|
| 470 |
+
|
| 471 |
+
The active CSV files and live Viewer use semicolons for multiple `tool` and
|
| 472 |
+
`medium` values, for example `Pencil;FountainPen` and `Graphite;Ink`. A pipe
|
| 473 |
+
(`|`) is **not** a valid separator in v0.2. The two fields are independent
|
| 474 |
+
observed-value lists; equal list lengths and positional pairing are not
|
| 475 |
+
guaranteed. See `SCHEMA.md`.
|
| 476 |
+
|
| 477 |
+
`encoded_frame_rate` is encoded playback rate. It is not the original temporal
|
| 478 |
+
sampling rate of the drawing process.
|
| 479 |
+
|
| 480 |
+
## Acquisition and Stored-Video Orientation
|
| 481 |
+
|
| 482 |
+
The acquisition protocol effective July 13, 2025 is documented in
|
| 483 |
+
`Archive_Specifications.md`.
|
| 484 |
+
|
| 485 |
+
The protocol's capture orientation and a file's stored pixel orientation are
|
| 486 |
+
different concepts. The `orientation`, `width_px`, and `height_px` metadata
|
| 487 |
+
describe the published encoded file. Historical canonicalization may include a
|
| 488 |
+
rotation, crop, or transcode; those transformations are documented only where
|
| 489 |
+
evidence currently exists and must not be inferred from dimensions alone.
|
| 490 |
+
|
| 491 |
+
The July 13, 2025 protocol boundary is explicitly encoded in canonical
|
| 492 |
+
metadata. It supports era-aware comparison of repeated physical-media practice,
|
| 493 |
+
but it is an acquisition change, not a skill-change label. Differences across
|
| 494 |
+
that boundary may reflect capture conditions as well as practice development.
|
| 495 |
+
|
| 496 |
+
## Annotation State
|
| 497 |
+
|
| 498 |
+
Session-level descriptive and provenance metadata are curated by the creator
|
| 499 |
+
from the physical practice, filenames, file properties, and retained historical
|
| 500 |
+
evidence. This is the scope of `annotations_creators: expert-generated`; it does
|
| 501 |
+
not mean that frame-level task labels exist. Likewise, `language: en` describes
|
| 502 |
+
the filename vocabulary, metadata, and documentation, not incidental audio.
|
| 503 |
+
|
| 504 |
+
The `video-classification` task facet refers to possible session-level targets
|
| 505 |
+
such as documented tool, medium, and support. The release does not define label
|
| 506 |
+
encodings, an official benchmark, or train/validation/test partitions.
|
| 507 |
+
|
| 508 |
+
The videos themselves are primarily raw and unannotated. The release does not
|
| 509 |
+
provide:
|
| 510 |
+
|
| 511 |
+
- frame-level bounding boxes or segmentation masks
|
| 512 |
+
- hand, pen-tip, pose, or stroke labels
|
| 513 |
+
- aesthetic or quality scores
|
| 514 |
+
- imposed stylistic classifications
|
| 515 |
+
- calibrated physical trajectories
|
| 516 |
+
- original capture timestamps for individual time-lapse frames
|
| 517 |
+
|
| 518 |
+
Researchers may derive annotations, but derived labels should identify the
|
| 519 |
+
source `record_id` and pinned repository revision.
|
| 520 |
+
|
| 521 |
+
## Intended and Unsupported Uses
|
| 522 |
+
|
| 523 |
+
### Reasonable uses in the current release
|
| 524 |
+
|
| 525 |
+
- archival and drawing-process research
|
| 526 |
+
- qualitative within-creator analysis of practice and skill development across
|
| 527 |
+
repeated physical-media sessions
|
| 528 |
+
- self-supervised video representation experiments
|
| 529 |
+
- frame-change, scene, and workspace analysis
|
| 530 |
+
- development of annotation and tracking methods
|
| 531 |
+
|
| 532 |
+
### Uses requiring additional validation or calibration
|
| 533 |
+
|
| 534 |
+
- hand or pen-tip tracking
|
| 535 |
+
- optical-flow comparison across acquisition eras
|
| 536 |
+
- temporal behavior analysis
|
| 537 |
+
- real-world trajectory, velocity, acceleration, or motor-control measurement
|
| 538 |
+
|
| 539 |
+
The release does not currently provide capture intervals, acceleration factors,
|
| 540 |
+
source-frame timestamps, camera calibration, or pixel-to-physical coordinate
|
| 541 |
+
mapping. Encoded time-lapse playback must not be treated as real drawing time.
|
| 542 |
+
|
| 543 |
+
### Not validated
|
| 544 |
+
|
| 545 |
+
- population-level claims about artists or drawing behavior
|
| 546 |
+
- clinical, biometric, authorship, or identity inference
|
| 547 |
+
- a leakage-safe training or evaluation benchmark
|
| 548 |
+
- commercial use outside the CC BY-NC 4.0 terms
|
| 549 |
+
|
| 550 |
+
## Limitations and Sources of Bias
|
| 551 |
+
|
| 552 |
+
- The archive documents one creator and one evolving practice.
|
| 553 |
+
- Current public video coverage begins in 2024, not 2012.
|
| 554 |
+
- The standard and pre-standard tiers have substantially different historical
|
| 555 |
+
descriptive/provenance completeness and acquisition conditions.
|
| 556 |
+
- The workspace can contain hands, tools, phones, tablets, reference material,
|
| 557 |
+
and other objects that may create visual shortcuts or occlusion.
|
| 558 |
+
- Stored resolution and frame rate do not establish physical or temporal
|
| 559 |
+
calibration.
|
| 560 |
+
- Large files make exhaustive inspection and replication expensive.
|
| 561 |
+
- No official leakage-safe split exists.
|
| 562 |
+
|
| 563 |
+
## Rights, Privacy, and Audio
|
| 564 |
+
|
| 565 |
+
The creator confirms ownership of the published video files and depicted
|
| 566 |
+
creator-owned drawings. Material that cannot pass the ownership and provenance
|
| 567 |
+
review is not part of the active public index and is not distributed by this
|
| 568 |
+
release. This statement does not independently grant rights in incidental
|
| 569 |
+
third-party material that may appear on screens, in references, or in captured
|
| 570 |
+
audio.
|
| 571 |
+
|
| 572 |
+
Nearly all published masters retain an audio stream. `has_audio` records stream
|
| 573 |
+
presence only; it does not establish that the stream contains meaningful
|
| 574 |
+
signal. Users are responsible for reviewing audio, visible screens, references,
|
| 575 |
+
reflections, tattoos, and other potentially identifying or third-party content
|
| 576 |
+
before redistribution or model release. A future proxy release should remove
|
| 577 |
+
audio by default while preserving the archival masters.
|
| 578 |
+
|
| 579 |
+
## Access and Reproducibility
|
| 580 |
+
|
| 581 |
+
The active 490-video release contains 1,984,749,320,057 bytes of video
|
| 582 |
+
(approximately 1.98 TB, or 1.81 TiB). Canonical files are often several
|
| 583 |
+
gigabytes each, so users should select records through `metadata.csv` before
|
| 584 |
+
downloading video.
|
| 585 |
+
|
| 586 |
+
### Bandwidth-safe Quick Start
|
| 587 |
+
|
| 588 |
+
Install Hugging Face Datasets, stream the archive, and disable decoding while
|
| 589 |
+
selecting records:
|
| 590 |
+
|
| 591 |
+
```python
|
| 592 |
+
from datasets import Video, load_dataset
|
| 593 |
+
|
| 594 |
+
dataset = load_dataset(
|
| 595 |
+
"maxwellinked/time-lapse-artifacts",
|
| 596 |
+
"canonical",
|
| 597 |
+
split="archive",
|
| 598 |
+
streaming=True,
|
| 599 |
+
)
|
| 600 |
+
metadata = dataset.cast_column("video", Video(decode=False))
|
| 601 |
+
first = next(iter(metadata))
|
| 602 |
+
print(first["video"]["path"], first["tool"], first["medium"])
|
| 603 |
+
```
|
| 604 |
+
|
| 605 |
+
This exposes the complete metadata schema without transferring video bytes.
|
| 606 |
+
Default decoded row access additionally requires `torchcodec` and a compatible
|
| 607 |
+
video-decoding stack. Use `streaming=True` unless a full archive download is
|
| 608 |
+
intentional.
|
| 609 |
+
|
| 610 |
Use `"pre_standard"` as the configuration name to stream the earlier tier.
|
| 611 |
|
| 612 |
+
### Download and Verify One Record
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 613 |
|
| 614 |
+
Install `huggingface_hub`, then use the included helper with a stable
|
| 615 |
+
`record_id`:
|
| 616 |
|
| 617 |
```bash
|
| 618 |
+
python -m pip install huggingface_hub
|
|
|
|
| 619 |
```
|
| 620 |
|
| 621 |
+
The helper resolves the requested revision to an immutable commit, checks the
|
| 622 |
+
indexed byte size and Xet identity against the pinned Hub headers, and reports
|
| 623 |
+
the ordinary LFS-compatible SHA-256 separately.
|
|
|
|
|
|
|
| 624 |
|
| 625 |
+
Check a record without downloading its video:
|
|
|
|
| 626 |
|
| 627 |
```bash
|
| 628 |
+
python tools/download_verified.py tla-a66bdad6c903b89f --check-only
|
|
|
|
| 629 |
```
|
| 630 |
|
| 631 |
+
Download that record and verify its local byte size and SHA-256:
|
| 632 |
|
| 633 |
+
```bash
|
| 634 |
+
python tools/download_verified.py tla-a66bdad6c903b89f \
|
| 635 |
+
--revision "<commit-or-tag>" \
|
| 636 |
+
--output-dir downloads
|
| 637 |
+
```
|
|
|
|
| 638 |
|
| 639 |
+
`hub_xet_hash` is an Xet file ID, not the SHA-256 of the downloaded bytes. The
|
| 640 |
+
helper verifies both identities without conflating them. Video downloads may
|
| 641 |
+
be many gigabytes; use `--check-only` first.
|
| 642 |
|
| 643 |
+
For reproducible work:
|
| 644 |
+
|
| 645 |
+
1. Pin a repository commit or release tag.
|
| 646 |
+
2. Record the selected `record_id` values.
|
| 647 |
+
3. Preserve the published `hub_xet_hash` values.
|
| 648 |
+
4. State whether audio was retained.
|
| 649 |
+
5. Document all rotation, crop, sampling, decoding, and proxy-generation steps.
|
| 650 |
+
|
| 651 |
+
Run the included validator before publishing a metadata change:
|
| 652 |
+
|
| 653 |
+
```bash
|
| 654 |
+
python tools/validate_metadata.py metadata.csv \
|
| 655 |
+
--pre-standard-metadata Pre_Standard_Time_Lapses/metadata.csv
|
| 656 |
+
```
|
| 657 |
+
|
| 658 |
+
`tools/enrich_prestandard.py` reproduces the Pre-Standard technical fields
|
| 659 |
+
from a pinned Hub inventory and MP4 container headers. It uses HTTP range
|
| 660 |
+
requests through FFmpeg; it does not intentionally download complete videos.
|
| 661 |
+
`tools/capture_hub_inventory.py` records the corresponding Xet file IDs from
|
| 662 |
+
resolve headers without following redirects or transferring video payloads.
|
| 663 |
+
|
| 664 |
+
The v0.2 index can be regenerated from the pinned 335-row source index plus the
|
| 665 |
+
three audited additions:
|
| 666 |
+
|
| 667 |
+
```bash
|
| 668 |
+
python tools/repair_metadata.py source_metadata.csv metadata.csv \
|
| 669 |
+
--additions tools/metadata_additions_v0.2.csv
|
| 670 |
+
```
|
| 671 |
+
|
| 672 |
+
## Versioning
|
| 673 |
+
|
| 674 |
+
The repository is under active construction. Record identity is carried by
|
| 675 |
+
`record_id`; a filename may be corrected without creating a new conceptual
|
| 676 |
+
record. Content replacement must retain provenance and should receive a new
|
| 677 |
+
content hash.
|
| 678 |
+
|
| 679 |
+
See `CHANGELOG.md` for release-level changes.
|
| 680 |
+
|
| 681 |
+
## Documentation
|
| 682 |
+
|
| 683 |
- `metadata.csv` — canonical machine-readable index
|
| 684 |
- `Pre_Standard_Time_Lapses/metadata.csv` — active pre-standard public index
|
| 685 |
+
- `LICENSE` — CC BY-NC 4.0 notice and rights-scope qualification
|
| 686 |
- `SCHEMA.md` — filename and metadata contracts
|
| 687 |
- `Archive_Specifications.md` — acquisition specifications and known gaps
|
| 688 |
- `VALIDATION.md` — validation scope and current results
|
| 689 |
+
- `RELEASE_MANIFEST.json` — historical v0.2.0 release-candidate manifest; it
|
| 690 |
+
does not describe current `main` or provide checksums for the video payloads
|
| 691 |
- `tools/capture_hub_inventory.py` — pinned Hub/Xet identity inventory
|
| 692 |
+
- `tools/download_verified.py` — selected download and byte-integrity check
|
| 693 |
- `tools/enrich_prestandard.py` — pinned Pre-Standard technical enrichment
|
| 694 |
+
- `tools/validate_metadata.py` — cross-tier metadata and repository checks
|
| 695 |
+
- `Standard_Time_Lapses/Provenance/` — historical evidence and mappings
|
| 696 |
+
|
| 697 |
+
## Citation
|
| 698 |
+
|
| 699 |
+
Until a DOI-backed release is available, cite the dataset and pinned revision:
|
| 700 |
+
|
| 701 |
+
```bibtex
|
| 702 |
+
@dataset{maxwellinked_time_lapse_artifacts_2026,
|
| 703 |
+
author = {maxwellinked},
|
| 704 |
+
title = {time-lapse-artifacts},
|
| 705 |
+
year = {2026},
|
| 706 |
+
publisher = {Hugging Face},
|
| 707 |
+
url = {https://huggingface.co/datasets/maxwellinked/time-lapse-artifacts},
|
| 708 |
+
note = {Active construction release; include the repository revision used}
|
| 709 |
+
}
|
| 710 |
+
```
|
| 711 |
+
|
| 712 |
+
## License
|
| 713 |
+
|
| 714 |
+
The dataset is released under **CC BY-NC 4.0**. The license applies only to
|
| 715 |
+
material for which the licensor holds the necessary rights. Users must conduct
|
| 716 |
+
their own review of incidental third-party content and downstream use.
|
tools/download_verified.py
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Download one indexed video from a pinned Hub revision and verify its bytes.
|
| 3 |
+
|
| 4 |
+
The script resolves a branch or tag to an immutable commit, checks the selected
|
| 5 |
+
metadata row against the Hub's resolve headers, and optionally downloads the
|
| 6 |
+
video. After download it verifies both the exact byte size and the ordinary
|
| 7 |
+
LFS-compatible SHA-256. The Xet file ID is checked separately because it is not
|
| 8 |
+
the SHA-256 of the downloaded file.
|
| 9 |
+
"""
|
| 10 |
+
|
| 11 |
+
from __future__ import annotations
|
| 12 |
+
|
| 13 |
+
import argparse
|
| 14 |
+
import csv
|
| 15 |
+
import hashlib
|
| 16 |
+
from pathlib import Path
|
| 17 |
+
from urllib.parse import quote
|
| 18 |
+
|
| 19 |
+
from huggingface_hub import HfApi, hf_hub_download
|
| 20 |
+
|
| 21 |
+
from capture_hub_inventory import read_identity
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
DEFAULT_REPO_ID = "maxwellinked/time-lapse-artifacts"
|
| 25 |
+
INDEX_PATHS = (
|
| 26 |
+
"metadata.csv",
|
| 27 |
+
"Pre_Standard_Time_Lapses/metadata.csv",
|
| 28 |
+
)
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
def load_record(repo_id: str, revision: str, record_id: str) -> dict[str, str]:
|
| 32 |
+
matches: list[dict[str, str]] = []
|
| 33 |
+
for index_path in INDEX_PATHS:
|
| 34 |
+
local_path = hf_hub_download(
|
| 35 |
+
repo_id=repo_id,
|
| 36 |
+
filename=index_path,
|
| 37 |
+
repo_type="dataset",
|
| 38 |
+
revision=revision,
|
| 39 |
+
)
|
| 40 |
+
with Path(local_path).open(encoding="utf-8", newline="") as handle:
|
| 41 |
+
for row in csv.DictReader(handle):
|
| 42 |
+
if row.get("record_id") == record_id:
|
| 43 |
+
matches.append(row)
|
| 44 |
+
|
| 45 |
+
if not matches:
|
| 46 |
+
raise SystemExit(f"record_id not found: {record_id}")
|
| 47 |
+
if len(matches) != 1:
|
| 48 |
+
raise SystemExit(f"record_id is not unique across active indexes: {record_id}")
|
| 49 |
+
return matches[0]
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def sha256_file(path: Path) -> str:
|
| 53 |
+
digest = hashlib.sha256()
|
| 54 |
+
with path.open("rb") as handle:
|
| 55 |
+
for block in iter(lambda: handle.read(8 * 1024 * 1024), b""):
|
| 56 |
+
digest.update(block)
|
| 57 |
+
return digest.hexdigest()
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
def main() -> None:
|
| 61 |
+
parser = argparse.ArgumentParser(
|
| 62 |
+
description="Download one indexed video and verify its pinned Hub identity."
|
| 63 |
+
)
|
| 64 |
+
parser.add_argument("record_id", help="Stable tla- record ID to download")
|
| 65 |
+
parser.add_argument(
|
| 66 |
+
"--repo-id",
|
| 67 |
+
default=DEFAULT_REPO_ID,
|
| 68 |
+
help=f"Dataset repository (default: {DEFAULT_REPO_ID})",
|
| 69 |
+
)
|
| 70 |
+
parser.add_argument(
|
| 71 |
+
"--revision",
|
| 72 |
+
default="main",
|
| 73 |
+
help="Branch, tag, or commit to resolve and pin (default: main)",
|
| 74 |
+
)
|
| 75 |
+
parser.add_argument(
|
| 76 |
+
"--output-dir",
|
| 77 |
+
type=Path,
|
| 78 |
+
default=Path("downloads"),
|
| 79 |
+
help="Local download directory (default: downloads)",
|
| 80 |
+
)
|
| 81 |
+
parser.add_argument(
|
| 82 |
+
"--check-only",
|
| 83 |
+
action="store_true",
|
| 84 |
+
help="Verify metadata and Hub headers without downloading the video",
|
| 85 |
+
)
|
| 86 |
+
parser.add_argument("--timeout", type=int, default=30)
|
| 87 |
+
parser.add_argument("--retries", type=int, default=2)
|
| 88 |
+
args = parser.parse_args()
|
| 89 |
+
|
| 90 |
+
commit = HfApi().dataset_info(args.repo_id, revision=args.revision).sha
|
| 91 |
+
if not commit:
|
| 92 |
+
raise SystemExit(f"unable to resolve revision: {args.revision}")
|
| 93 |
+
|
| 94 |
+
row = load_record(args.repo_id, commit, args.record_id)
|
| 95 |
+
file_name = row.get("file_name", "")
|
| 96 |
+
expected_xet = row.get("hub_xet_hash", "").lower()
|
| 97 |
+
try:
|
| 98 |
+
expected_size = int(row.get("size_bytes", ""))
|
| 99 |
+
except ValueError as exc:
|
| 100 |
+
raise SystemExit(f"invalid size_bytes for {args.record_id}") from exc
|
| 101 |
+
if not file_name or not expected_xet:
|
| 102 |
+
raise SystemExit(f"incomplete identity metadata for {args.record_id}")
|
| 103 |
+
|
| 104 |
+
encoded_path = quote(file_name, safe="/")
|
| 105 |
+
resolve_url = (
|
| 106 |
+
f"https://huggingface.co/datasets/{args.repo_id}/"
|
| 107 |
+
f"resolve/{commit}/{encoded_path}"
|
| 108 |
+
)
|
| 109 |
+
identity = read_identity(resolve_url, args.timeout, args.retries)
|
| 110 |
+
|
| 111 |
+
if identity["repoCommit"] != commit:
|
| 112 |
+
raise SystemExit("resolve response came from a different repository revision")
|
| 113 |
+
if identity["xetHash"] != expected_xet:
|
| 114 |
+
raise SystemExit("Hub Xet identity differs from the indexed hub_xet_hash")
|
| 115 |
+
if identity["linkedSize"] != expected_size:
|
| 116 |
+
raise SystemExit("Hub byte size differs from the indexed size_bytes")
|
| 117 |
+
|
| 118 |
+
print(f"record_id: {args.record_id}")
|
| 119 |
+
print(f"revision: {commit}")
|
| 120 |
+
print(f"file: {file_name}")
|
| 121 |
+
print(f"size_bytes: {expected_size}")
|
| 122 |
+
print(f"hub_xet_hash: {expected_xet}")
|
| 123 |
+
print(f"sha256: {identity['linkedEtag']}")
|
| 124 |
+
|
| 125 |
+
if args.check_only:
|
| 126 |
+
print("verified metadata against pinned Hub headers; video not downloaded")
|
| 127 |
+
return
|
| 128 |
+
|
| 129 |
+
downloaded = Path(
|
| 130 |
+
hf_hub_download(
|
| 131 |
+
repo_id=args.repo_id,
|
| 132 |
+
filename=file_name,
|
| 133 |
+
repo_type="dataset",
|
| 134 |
+
revision=commit,
|
| 135 |
+
local_dir=args.output_dir,
|
| 136 |
+
)
|
| 137 |
+
)
|
| 138 |
+
actual_size = downloaded.stat().st_size
|
| 139 |
+
if actual_size != expected_size:
|
| 140 |
+
raise SystemExit(
|
| 141 |
+
f"downloaded size mismatch: expected {expected_size}, got {actual_size}"
|
| 142 |
+
)
|
| 143 |
+
|
| 144 |
+
actual_sha256 = sha256_file(downloaded)
|
| 145 |
+
if actual_sha256 != identity["linkedEtag"]:
|
| 146 |
+
raise SystemExit(
|
| 147 |
+
"downloaded SHA-256 differs from the pinned Hub LFS-compatible identity"
|
| 148 |
+
)
|
| 149 |
+
|
| 150 |
+
print(f"downloaded_to: {downloaded.resolve()}")
|
| 151 |
+
print("verified downloaded byte size and SHA-256")
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
if __name__ == "__main__":
|
| 155 |
+
main()
|