mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 05:47:24 +01:00
fix example to use real boxes
This commit is contained in:
parent
cd6e20b68e
commit
2ed0b5568e
@ -104,14 +104,14 @@ def parse_mp4_boxes(r: RawIOBase):
|
||||
|
||||
Example: Path:
|
||||
('test', b'123456') /test
|
||||
('box1', b'') /box1 (start of container box)
|
||||
('helo', b'abcdef') /box1/helo
|
||||
('1984', b'1q84') /box1/1984
|
||||
('http', b'') /box1/http (start of container box)
|
||||
('keys', b'2022') /box1/http/keys
|
||||
(None , 'http') /box1/http (end of container box)
|
||||
('topp', b'1991') /box1/topp
|
||||
(None , 'box1') /box1 (end of container box)
|
||||
('moov', b'') /moov (start of container box)
|
||||
('helo', b'abcdef') /moov/helo
|
||||
('1984', b'1q84') /moov/1984
|
||||
('trak', b'') /moov/trak (start of container box)
|
||||
('keys', b'2022') /moov/trak/keys
|
||||
(None , 'trak') /moov/trak (end of container box)
|
||||
('topp', b'1991') /moov/topp
|
||||
(None , 'moov') /moov (end of container box)
|
||||
"""
|
||||
|
||||
while True:
|
||||
|
Loading…
Reference in New Issue
Block a user