Discussion:
[Pyparsing] Bug with .dump()
mlist @dslextreme.com
2015-04-22 19:18:50 UTC
Permalink
There is definitely a difference between the output of .dump() on Windows
and Mac. I tried on Win7 and Wn 10 and Mac OS X 10.10.


Here is an example of what I am seeing:

*Windows Output*

C:\Python27\python.exe C:/Users/qtqa/Desktop/scripts/run_moovscope.py

['Track ID', 2, 'vide', '(', 'Video', ') Enabled Not self-contained',
'Format', 'vide/avc1', 'dimensions: video', '1920x1080', 'presentation:',
'1920x1080(pixelAspect+clean)', 'cleanAperture:', '1920x1080 @ 0,0
(originTopLeft)', 'MediaTimescale:600', 'Duration:3003/60000:00:05.005',
'MinSampleDuration:20/600', 'AdvanceDecodeDelta:21/600 00:00:00.035', 'Num
data bytes:', 6555892, 'Est. data rate:', '10.479Mbps', 'Nominal
framerate:', '29.970fps', 150, ' samples', 'Frame', ' Reordering Required',
'Included in auto selection. Language code <und>', 'Dimensions:',
'1920x1080', 'CleanAperture: ', '1920x1080', 'ProductionAperture:',
'1920x1080', 'EncodedPixels:', '1920x1080', 'Track Matrix:', ' 1.0 0.0 0.0
/ 0.0 1.0 0.0 / 0.0 0.0 1.0', 1, 'edit:', ['Media start', ['0/600',
'00:00:00.000'], 'dur', ['3000/600', '00:00:05.000'], 'Track start',
['0/600', '00:00:00.000'], 'dur', ['3000/600', '00:00:05.000'], '']]

- CleanAperture: 1920x1080

- Dimensions: 1920x1080

- EncodedPixels: 1920x1080

- ProductionAperture: 1920x1080

- TrackMatrix: 1.0 0.0 0.0 / 0.0 1.0 0.0 / 0.0 0.0 1.0

- cleanAperture: 1920x1080 @ 0,0 (originTopLeft)

- data_bytes: 6555892

- decode_delta: 21/600 00:00:00.035

- edits:

[0]:

['Media start', ['0/600', '00:00:00.000'], 'dur', ['3000/600',
'00:00:05.000'], 'Track start', ['0/600', '00:00:00.000'], 'dur',
['3000/600', '00:00:05.000'], '']

- MediaDuration: ['3000/600', '00:00:05.000']

- MediaStart: ['0/600', '00:00:00.000']

- TrackDuration: ['3000/600', '00:00:05.000']

- TrackStart: ['0/600', '00:00:00.000']

- estimated_data_rate: 10.479Mbps

- fps: 29.970fps

- number_of_edits: 1

- presentation: 1920x1080(pixelAspect+clean)

- sample_duration: 20/600

- samples: 150

- track_format: vide/avc1

- type: Video

- video: 1920x1080


Process finished with exit code 0


*Mac Output*

/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7
/Users/test/Desktop/PlaybackBaseline/run_moovscope.py

['Track ID', 2, 'vide', '(', 'Video', ') Enabled Not self-contained',
'Format', 'vide/avc1', 'dimensions: video', '1920x1080', 'presentation:',
'1920x1080(pixelAspect+clean)', 'cleanAperture:', '1920x1080 @ 0,0
(originTopLeft)', 'MediaTimescale:600', 'Duration:3003/60000:00:05.005',
'MinSampleDuration:20/600', 'AdvanceDecodeDelta:21/600 00:00:00.035', 'Num
data bytes:', 6555892, 'Est. data rate:', '10.479Mbps', 'Nominal
framerate:', '29.970fps', 150, ' samples', 'Frame', ' Reordering Required',
'Included in auto selection. Language code <und>', 'Dimensions:',
'1920x1080', 'CleanAperture: ', '1920x1080', 'ProductionAperture:',
'1920x1080', 'EncodedPixels:', '1920x1080', 'Track Matrix:', ' 1.0 0.0 0.0
/ 0.0 1.0 0.0 / 0.0 0.0 1.0', 1, 'edit:', ['Media start', ['0/600',
'00:00:00.000'], 'dur', ['3000/600', '00:00:05.000'], 'Track start',
['0/600', '00:00:00.000'], 'dur', ['3000/600', '00:00:05.000'], '']]

- CleanAperture: 1920x1080

- Dimensions: 1920x1080

- EncodedPixels: 1920x1080

- ProductionAperture: 1920x1080

- TrackMatrix: 1.0 0.0 0.0 / 0.0 1.0 0.0 / 0.0 0.0 1.0

- cleanAperture: 1920x1080 @ 0,0 (originTopLeft)

- data_bytes: 6555892

- decode_delta: 21/600 00:00:00.035

- edits: [['Media start', ['0/600', '00:00:00.000'], 'dur', ['3000/600',
'00:00:05.000'], 'Track start', ['0/600', '00:00:00.000'], 'dur',
['3000/600', '00:00:05.000'], '']]

- estimated_data_rate: 10.479Mbps

- fps: 29.970fps

- number_of_edits: 1

- presentation: 1920x1080(pixelAspect+clean)

- sample_duration: 20/600

- samples: 150

- track_format: vide/avc1

- type: Video

- video: 1920x1080


Process finished with exit code 0

Loading...