We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57cb8b3 commit 847e779Copy full SHA for 847e779
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Added
11
+
12
+- Add support for video chapters
13
14
## [3.3.0] - 2024-12-05
15
16
### Changed
scraper/tests-integration/integration.py
@@ -78,7 +78,9 @@ def test_zim_videos():
78
).mimetype
79
== "text/vtt"
80
)
81
-
82
+ if video_json["chapterPath"]:
83
+ assert zim_fh.get_item(video_json["chapterPath"]).mimetype == "text/vtt"
84
85
def test_zim_playlists_file():
86
"""Ensure playlists json files are present in ZIM file"""
0 commit comments