Zend certified PHP/Magento developer

How can I detect which channels contain compressed audio in a video file by using command line tools?

I have an MXF file that contains 16 audio tracks. I know the first two tracks (stereo) contain Dolby E compressed video. Using MediaInfo (gui) it lists 16 audio streams with a mix of Dolby E and PCM as shown in this link:

MediaInfo GUI

I need a way to get this information from the command line. I tried “ffmpeg -i channel_mapping_1080i2997_5.1_2_comp.mxf -f null -” but it shows 16 PCM tracks:

  Stream #0:1: Audio: pcm_s24be, 48000 Hz, hexadecagonal, s32 (24 bit), 18432 kb/s
...
Stream mapping:
  Stream #0:0 -> #0:0 (mpeg2video (native) -> wrapped_avframe (native))
  Stream #0:1 -> #0:1 (pcm_s24be (native) -> pcm_s16le (native))

Can ffmpeg or some other command line program be used to obtain this information? I specifically need to know which audio tracks contain compressed data and which are PCM.