diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-21 19:42:33 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-03-21 19:42:33 +0100 |
commit | 8ef4cf92635003fb79263d22126289d788e34633 (patch) | |
tree | 81a4099023c7c9c07fc9b9fc97be5e8bbc6eb7ae /crates | |
parent | refactor(yt_dlp): Remove the unneeded `async` from the public functions (diff) | |
download | yt-8ef4cf92635003fb79263d22126289d788e34633.zip |
chore(yt_dlp/wrappers/info_json): Add additional missing field
Diffstat (limited to 'crates')
-rw-r--r-- | crates/yt_dlp/src/wrapper/info_json.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/yt_dlp/src/wrapper/info_json.rs b/crates/yt_dlp/src/wrapper/info_json.rs index a2c00df..ea73d26 100644 --- a/crates/yt_dlp/src/wrapper/info_json.rs +++ b/crates/yt_dlp/src/wrapper/info_json.rs @@ -345,6 +345,9 @@ pub struct InfoJson { pub sponsorblock_chapters: Option<Vec<SponsorblockChapter>>, #[serde(skip_serializing_if = "Option::is_none")] + pub start_time: Option<f64>, + + #[serde(skip_serializing_if = "Option::is_none")] pub stretched_ratio: Option<Todo>, #[serde(skip_serializing_if = "Option::is_none")] |