@@ -64,15 +64,17 @@ void displayMetadatas( const char* filename )
64
64
std::cout << std::setw ( keyWidth ) << " height" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).height << std::endl;
65
65
std::cout << std::setw ( keyWidth ) << " dtgActiveFormat" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).dtgActiveFormat << std::endl;
66
66
67
+
68
+ std::cout << std::setw ( keyWidth ) << " start timecode" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).startTimecode << std::endl;
67
69
std::cout << std::setw ( keyWidth ) << " timeBase" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).timeBase .num << " /" <<
68
- input.getProperties ().videoStreams .at (videoStreamIndex).timeBase .den << std::endl;
70
+ input.getProperties ().videoStreams .at (videoStreamIndex).timeBase .den << std::endl;
69
71
std::cout << std::setw ( keyWidth ) << " fps" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).fps << std::endl;
70
72
std::cout << std::setw ( keyWidth ) << " ticksPerFrame" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).ticksPerFrame << std::endl;
71
73
72
74
std::cout << std::setw ( keyWidth ) << " pixel aspect ratio" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).sar .num << " /" <<
73
- input.getProperties ().videoStreams .at (videoStreamIndex).sar .den << std::endl;
75
+ input.getProperties ().videoStreams .at (videoStreamIndex).sar .den << std::endl;
74
76
std::cout << std::setw ( keyWidth ) << " display aspect ratio" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).dar .num << " /" <<
75
- input.getProperties ().videoStreams .at (videoStreamIndex).dar .den << std::endl;
77
+ input.getProperties ().videoStreams .at (videoStreamIndex).dar .den << std::endl;
76
78
std::cout << std::setw ( keyWidth ) << " pixel type" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).pixelName << std::endl;
77
79
std::cout << std::setw ( keyWidth ) << " bit wise acked" << " : " << ( input.getProperties ().videoStreams .at (videoStreamIndex).bitWisePacked ? " True" : " False" ) << std::endl;
78
80
std::cout << std::setw ( keyWidth ) << " rgb pixel" << " : " << ( input.getProperties ().videoStreams .at (videoStreamIndex).rgbPixelData ? " True" : " False" ) << std::endl;
@@ -81,6 +83,7 @@ void displayMetadatas( const char* filename )
81
83
82
84
std::cout << std::setw ( keyWidth ) << " bit rate" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).bitRate << std::endl;
83
85
std::cout << std::setw ( keyWidth ) << " max bit rate" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).maxBitRate << std::endl;
86
+ std::cout << std::setw ( keyWidth ) << " min bit rate" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).minBitRate << std::endl;
84
87
85
88
std::cout << std::setw ( keyWidth ) << " color transfert" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).colorTransfert << std::endl;
86
89
std::cout << std::setw ( keyWidth ) << " colorspace" << " : " << input.getProperties ().videoStreams .at (videoStreamIndex).colorspace << std::endl;
0 commit comments