mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Populate track duration in Mp4Extractor
and FragmentedMp4Extractor
PiperOrigin-RevId: 688125056
This commit is contained in:
parent
73790cf2a4
commit
e926b0df1e
@ -690,11 +690,11 @@ public class FragmentedMp4Extractor implements Extractor {
|
||||
for (int i = 0; i < trackCount; i++) {
|
||||
TrackSampleTable sampleTable = sampleTables.get(i);
|
||||
Track track = sampleTable.track;
|
||||
TrackOutput output = extractorOutput.track(i, track.type);
|
||||
output.durationUs(track.durationUs);
|
||||
TrackBundle trackBundle =
|
||||
new TrackBundle(
|
||||
extractorOutput.track(i, track.type),
|
||||
sampleTable,
|
||||
getDefaultSampleValues(defaultSampleValuesArray, track.id));
|
||||
output, sampleTable, getDefaultSampleValues(defaultSampleValuesArray, track.id));
|
||||
trackBundles.put(track.id, trackBundle);
|
||||
durationUs = max(durationUs, track.durationUs);
|
||||
}
|
||||
|
@ -714,12 +714,14 @@ public final class Mp4Extractor implements Extractor, SeekMap {
|
||||
continue;
|
||||
}
|
||||
Track track = trackSampleTable.track;
|
||||
long trackDurationUs =
|
||||
track.durationUs != C.TIME_UNSET ? track.durationUs : trackSampleTable.durationUs;
|
||||
durationUs = max(durationUs, trackDurationUs);
|
||||
Mp4Track mp4Track =
|
||||
new Mp4Track(track, trackSampleTable, extractorOutput.track(trackIndex++, track.type));
|
||||
|
||||
long trackDurationUs =
|
||||
track.durationUs != C.TIME_UNSET ? track.durationUs : trackSampleTable.durationUs;
|
||||
mp4Track.trackOutput.durationUs(trackDurationUs);
|
||||
durationUs = max(durationUs, trackDurationUs);
|
||||
|
||||
int maxInputSize;
|
||||
if (MimeTypes.AUDIO_TRUEHD.equals(track.format.sampleMimeType)) {
|
||||
// TrueHD groups samples per chunks of TRUEHD_RECHUNK_SAMPLE_COUNT samples.
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 5
|
||||
track 0:
|
||||
total output bytes = 3306897
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -264,6 +265,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -291,6 +293,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 26100
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -531,6 +534,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 5
|
||||
track 0:
|
||||
total output bytes = 2605317
|
||||
sample count = 44
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -208,6 +209,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -235,6 +237,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 17100
|
||||
sample count = 38
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -395,6 +398,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 5
|
||||
track 0:
|
||||
total output bytes = 1572110
|
||||
sample count = 23
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -124,6 +125,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -151,6 +153,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 7650
|
||||
sample count = 17
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -227,6 +230,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 5
|
||||
track 0:
|
||||
total output bytes = 209513
|
||||
sample count = 2
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -40,6 +41,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -67,6 +69,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 450
|
||||
sample count = 1
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -79,6 +82,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 3865
|
||||
sample count = 1
|
||||
track duration = 867000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 3865
|
||||
sample count = 1
|
||||
track duration = 867000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 3865
|
||||
sample count = 1
|
||||
track duration = 867000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 3865
|
||||
sample count = 1
|
||||
track duration = 867000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 9294
|
||||
sample count = 43
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -196,6 +197,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 7229
|
||||
sample count = 31
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 3784
|
||||
sample count = 16
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -88,6 +89,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 235
|
||||
sample count = 1
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -28,6 +29,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 9294
|
||||
sample count = 43
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -196,6 +197,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 7229
|
||||
sample count = 31
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 3784
|
||||
sample count = 16
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -88,6 +89,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 235
|
||||
sample count = 1
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -28,6 +29,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 9294
|
||||
sample count = 43
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -196,6 +197,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 9294
|
||||
sample count = 43
|
||||
track duration = 1019300
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 1
|
||||
@ -196,6 +197,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 130926
|
||||
sample count = 30
|
||||
track duration = 1020100
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 3306897
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -263,6 +264,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -289,6 +291,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 26100
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -529,6 +532,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 2605317
|
||||
sample count = 44
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -207,6 +208,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -233,6 +235,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 17100
|
||||
sample count = 38
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -393,6 +396,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 1572110
|
||||
sample count = 23
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -123,6 +124,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -149,6 +151,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 7650
|
||||
sample count = 17
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -225,6 +228,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 209513
|
||||
sample count = 2
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -39,6 +40,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -65,6 +67,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 450
|
||||
sample count = 1
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -77,6 +80,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 3306897
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -263,6 +264,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -289,6 +291,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 26100
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -529,6 +532,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 2605317
|
||||
sample count = 44
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -207,6 +208,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -233,6 +235,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 17100
|
||||
sample count = 38
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -393,6 +396,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 1572110
|
||||
sample count = 23
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -123,6 +124,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -149,6 +151,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 7650
|
||||
sample count = 17
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -225,6 +228,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 209513
|
||||
sample count = 2
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -39,6 +40,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -65,6 +67,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 450
|
||||
sample count = 1
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -77,6 +80,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 3306897
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -263,6 +264,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -289,6 +291,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 26100
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -529,6 +532,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 4
|
||||
track 0:
|
||||
total output bytes = 3306897
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/hevc
|
||||
@ -263,6 +264,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 151315
|
||||
sample count = 1
|
||||
track duration = 466800
|
||||
format 0:
|
||||
id = 2
|
||||
sampleMimeType = video/hevc
|
||||
@ -289,6 +291,7 @@ track 1:
|
||||
track 2:
|
||||
total output bytes = 26100
|
||||
sample count = 58
|
||||
track duration = 2100700
|
||||
format 0:
|
||||
id = 3
|
||||
sampleMimeType = application/microvideo-meta-stream
|
||||
@ -529,6 +532,7 @@ track 2:
|
||||
track 3:
|
||||
total output bytes = 59
|
||||
sample count = 1
|
||||
track duration = 1133700
|
||||
format 0:
|
||||
id = 4
|
||||
sampleMimeType = application/motionphoto-image-meta
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 9529
|
||||
sample count = 45
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 7464
|
||||
sample count = 33
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 4019
|
||||
sample count = 18
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 470
|
||||
sample count = 3
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 9529
|
||||
sample count = 45
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 7464
|
||||
sample count = 33
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 4019
|
||||
sample count = 18
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 470
|
||||
sample count = 3
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 9529
|
||||
sample count = 45
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 9529
|
||||
sample count = 45
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
@ -148,6 +149,7 @@ track 0:
|
||||
track 1:
|
||||
total output bytes = 9529
|
||||
sample count = 45
|
||||
track duration = 1024000
|
||||
format 0:
|
||||
peakBitrate = 200000
|
||||
id = 2
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 89876
|
||||
sample count = 30
|
||||
track duration = 1001000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = video/avc
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 9216
|
||||
sample count = 6
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 4608
|
||||
sample count = 3
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 1536
|
||||
sample count = 1
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 9216
|
||||
sample count = 6
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 4608
|
||||
sample count = 3
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 1536
|
||||
sample count = 1
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288333
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 9216
|
||||
sample count = 6
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 4608
|
||||
sample count = 3
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 1536
|
||||
sample count = 1
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 9216
|
||||
sample count = 6
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 4608
|
||||
sample count = 3
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 1536
|
||||
sample count = 1
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 13824
|
||||
sample count = 9
|
||||
track duration = 288000
|
||||
format 0:
|
||||
averageBitrate = 384000
|
||||
peakBitrate = 384000
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 5411
|
||||
sample count = 13
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 3081
|
||||
sample count = 7
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 393
|
||||
sample count = 1
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 5411
|
||||
sample count = 13
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 3081
|
||||
sample count = 7
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 393
|
||||
sample count = 1
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7613
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7936
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 5632
|
||||
sample count = 13
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 3200
|
||||
sample count = 7
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 410
|
||||
sample count = 1
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7936
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 5632
|
||||
sample count = 13
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 3200
|
||||
sample count = 7
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 410
|
||||
sample count = 1
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
||||
track 0:
|
||||
total output bytes = 7936
|
||||
sample count = 19
|
||||
track duration = 760000
|
||||
format 0:
|
||||
id = 1
|
||||
sampleMimeType = audio/ac4
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user