You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's got an elst saying the file has a start time of 2112 (typical for macOS AAC encoder), and a segment duration of 22050 (which is correct).
mp4parse-rust reports a duration of 24576, because it uses the duration of the track. mp4parse_get_fragment_info doesn't work because it doesn't look into the right box.
The text was updated successfully, but these errors were encountered:
24576 is the duration indicated in the mdhd box.
The single edts entry indicates to edit to a duration of 22050, which is read into Track::edited_duration, but this does not find its way into the Mp4parseTrackInfo.
half-a-second-1ch-44100-aac-afconvert.mp4
Here's a file that is supposed to be exactly 0.5s long.
It has been produced by taking a wav file that's 0.5s long exactly and running this on a mac:
It's got an
elst
saying the file has a start time of 2112 (typical for macOS AAC encoder), and a segment duration of 22050 (which is correct).mp4parse-rust
reports a duration of 24576, because it uses the duration of the track.mp4parse_get_fragment_info
doesn't work because it doesn't look into the right box.The text was updated successfully, but these errors were encountered: