1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-06-02 13:39:54 +00:00

Fix code example

This commit is contained in:
TamDik 2022-06-03 13:40:12 +09:00
parent 21afff228c
commit 56f29d35b5

View file

@ -42,7 +42,7 @@ fn main() -> Result<()> {
println!("duration: {:?}", mp4.duration());
// Track info.
for track in mp4.tracks().iter() {
for track in mp4.tracks().values() {
println!(
"track: #{}({}) {} : {}",
track.track_id(),