1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2023 metamuffin <metamuffin.org>
*/
use anyhow::{anyhow, bail, Result};
use jellycommon::{BlockIndex, LocalTrack, SeekIndex, SourceTrack, SourceTrackKind};
use jellymatroska::{
block::Block,
matroska::MatroskaTag,
read::EbmlReader,
unflatten::{IterWithPos, Unflat, Unflatten},
};
use log::{debug, error, info, trace, warn};
use std::{collections::BTreeMap, path::PathBuf};
pub fn import_read(
path: &PathBuf,
input: &mut EbmlReader,
) -> Result<(Vec<SourceTrack>, Vec<LocalTrack>, BTreeMap<u64, SeekIndex>)> {
let mut iteminfo = Vec::new();
let mut private = Vec::new();
let mut seek_index = BTreeMap::new();
while let Some(item) = input.next() {
let item = match item {
Ok(item) => item,
Err(e) => {
warn!("{e}");
break;
}
};
match item {
MatroskaTag::Ebml(_) => {
let mut iter = Unflatten::new_with_end(input, item);
while let Some(Ok(Unflat {
children: _, item, ..
})) = iter.n()
{
match item {
MatroskaTag::DocType(t) => {
if !matches!(t.as_str(), "matroska" | "webm") {
error!("file is neither matroska nor webm but {:?}", t)
}
}
_ => debug!("(re) tag ignored: {item:?}"),
}
}
}
MatroskaTag::Segment(_) => {
info!("segment start");
let mut children = Unflatten::new_with_end(input, item);
import_read_segment(
path,
&mut children,
&mut iteminfo,
&mut private,
&mut seek_index,
)?;
info!("segment end");
}
_ => debug!("(r) tag ignored: {item:?}"),
}
}
Ok((iteminfo, private, seek_index))
}
fn import_read_segment(
path: &PathBuf,
segment: &mut Unflatten,
iteminfo: &mut Vec<SourceTrack>,
private: &mut Vec<LocalTrack>,
seek_index: &mut BTreeMap<u64, SeekIndex>,
) -> Result<Option<f64>> {
let (mut timestamp_scale, mut duration) = (None, None);
while let Some(Ok(Unflat { children, item, .. })) = segment.n() {
match item {
MatroskaTag::SeekHead(_) => {}
MatroskaTag::Info(_) => {
let mut children = children.unwrap();
while let Some(Ok(Unflat {
children: _, item, ..
})) = children.n()
{
match item {
MatroskaTag::TimestampScale(v) => timestamp_scale = Some(v),
MatroskaTag::Duration(v) => duration = Some(v),
_ => debug!("(rsi) tag ignored: {item:?}"),
}
}
}
MatroskaTag::Tags(_) => {}
MatroskaTag::Cues(_) => {}
MatroskaTag::Chapters(_) => {}
MatroskaTag::Tracks(_) => {
let mut children = children.unwrap();
while let Some(Ok(Unflat { children, item, .. })) = children.n() {
match item {
MatroskaTag::TrackEntry(_) => {
let mut children = children.unwrap();
let (
mut index,
mut language,
mut codec,
mut kind,
mut sample_rate,
mut channels,
mut width,
mut height,
mut name,
mut fps,
mut bit_depth,
mut codec_private,
mut default_duration,
) = (
None, None, None, None, None, None, None, None, None, None, None,
None, None,
);
while let Some(Ok(Unflat { children, item, .. })) = children.n() {
match item {
MatroskaTag::CodecID(b) => codec = Some(b),
MatroskaTag::Language(v) => language = Some(v),
MatroskaTag::TrackNumber(v) => index = Some(v),
MatroskaTag::TrackType(v) => kind = Some(v),
MatroskaTag::Name(v) => name = Some(v),
MatroskaTag::CodecPrivate(v) => codec_private = Some(v),
MatroskaTag::DefaultDuration(v) => default_duration = Some(v),
MatroskaTag::Audio(_) => {
let mut children = children.unwrap();
while let Some(Ok(Unflat { item, .. })) = children.n() {
match item {
MatroskaTag::Channels(v) => {
channels = Some(v as usize)
}
MatroskaTag::SamplingFrequency(v) => {
sample_rate = Some(v)
}
MatroskaTag::BitDepth(v) => bit_depth = Some(v),
_ => (),
}
}
}
MatroskaTag::Video(_) => {
let mut children = children.unwrap();
while let Some(Ok(Unflat { item, .. })) = children.n() {
match item {
MatroskaTag::PixelWidth(v) => width = Some(v),
MatroskaTag::PixelHeight(v) => height = Some(v),
MatroskaTag::FrameRate(v) => fps = Some(v),
_ => (),
}
}
}
_ => (),
}
}
let track_index = index.unwrap();
let kind = match kind.ok_or(anyhow!("track type required"))? {
1 => SourceTrackKind::Video {
fps: fps.unwrap_or(0.0), // TODO
width: width.unwrap(),
height: height.unwrap(),
},
2 => SourceTrackKind::Audio {
bit_depth: bit_depth.unwrap_or(0) as usize, // TODO
channels: channels.unwrap(),
sample_rate: sample_rate.unwrap(),
},
17 => SourceTrackKind::Subtitles,
_ => bail!("invalid track type"),
};
iteminfo.push(SourceTrack {
default_duration,
name: name.unwrap_or_else(|| "unnamed".to_string()),
codec: codec.unwrap(),
language: language.unwrap_or_else(|| "none".to_string()),
kind,
});
private.push(LocalTrack {
track: track_index as usize,
path: path.to_owned(),
codec_private,
})
}
_ => debug!("(rst) tag ignored: {item:?}"),
}
}
}
MatroskaTag::Cluster(_) => {
let mut children = children.unwrap();
let mut pts = 0;
let mut position = children.position();
loop {
if let Some(Ok(Unflat { children, item, .. })) = children.n() {
match item {
MatroskaTag::Timestamp(ts) => pts = ts,
MatroskaTag::BlockGroup(_) => {
debug!("group");
let mut children = children.unwrap();
// let position = children.position(); //? TODO where should this point to? cluster or block? // probably block
while let Some(Ok(Unflat {
children: _,
item,
position,
})) = children.n()
{
match item {
MatroskaTag::Block(ref buf) => {
let block = Block::parse(buf)?;
debug!(
"block: track={} tso={}",
block.track, block.timestamp_off
);
seek_index
.entry(block.track)
.or_insert(SeekIndex { blocks: vec![] })
.blocks
.push(BlockIndex {
pts: pts + block.timestamp_off as u64,
source_off: position,
size: block.data.len(),
});
}
_ => trace!("{item:?}"),
}
}
}
MatroskaTag::SimpleBlock(buf) => {
let block = Block::parse(&buf)?;
debug!(
"simple block: track={} tso={}",
block.track, block.timestamp_off
);
debug!("{pts} {}", block.timestamp_off);
seek_index
.entry(block.track)
.or_insert(SeekIndex { blocks: vec![] })
.blocks
.push(BlockIndex {
pts: (pts as i64 + block.timestamp_off as i64) as u64,
source_off: position,
size: block.data.len(),
});
}
_ => debug!("(rsc) tag ignored: {item:?}"),
}
} else {
break;
}
position = children.position();
}
}
_ => debug!("(rs) tag ignored: {item:?}"),
};
}
Ok(if let Some(duration) = duration {
Some((duration * timestamp_scale.unwrap_or(1_000_000) as f64) / 1_000_000_000_f64)
} else {
None
})
}
|