Movie statistics, codecs and resolutions

Back to:
Unknown module ListParents

For those interested in which codecs we have used and which resolutions, here's a list collected from all the TASvideos movies currently available to Ilari, based on the FOURCC in the MKV, MP4, or AVI header.

Video codecs and resolutions

CountCodecSize
924H264256x224
152H264320x240
126H264160x144
120H264320x224
113DIVX256x224
113H264240x160
89H264256x240
24H264256x192
21DIVX256x240
17XVID256x240
17XVID256x224
14H264640x400
14H264256x384
12H264256x232
11H264512x240
10H264448x336
9H264384x224
8DIVX320x240
8H264304x224
7H264640x480
4H264384x288
4XVID320x240
2H264344x232
2H264512x480
2DIVX256x232
2H264384x256
2H264512x448
2H264512x224
2H2641920x1344
2H2641920x1440
1H264320x232
1H264256x448
1H264484x160
1H264224x384
1H264288x224
1DIVX240x160
1H264288x192
1H264256x416
1VP80640x480
1H264592x448
1H264768x224
1DIVX160x144
1H264256x400
1H264368x240
1H264852x480
1H264256x408
1H264768x384

Video codecs

CountCodec
1665H264
146DIVX
38XVID
1VP80

Video sizes

CountSize
1054256x224
164320x240
127160x144
127256x240
120320x224
114240x160
24256x192
14640x400
14256x232
14256x384
11512x240
10448x336
9384x224
8304x224
8640x480
4384x288
21920x1344
2512x448
2384x256
2512x480
2512x224
2344x232
21920x1440
1224x384
1256x416
1256x408
1768x224
1320x232
1768x384
1256x448
1288x192
1852x480
1256x400
1288x224
1368x240
1592x448
1484x160

Audio codecs and rates

CountCodecRateChannels
435MP344100stereo
399MP348000stereo
215AAC44100stereo
182Vorbis44100stereo
139AAC48000mono
128AAC44100mono
93Vorbis48000mono
89AAC48000stereo
72Vorbis48000stereo
43Vorbis44100mono
16MP322050stereo
13MP332000stereo
8MP324000stereo
8Vorbis32000stereo
2FLAC44100stereo
1MP344100mono
1Vorbis44095stereo
1Vorbis24000stereo
1Vorbis43931stereo
1MP316000stereo
1Vorbis32006stereo
1Vorbis22050stereo
1AAC96000mono

Audio codecs

CountCodec
873MP3
572AAC
403Vorbis
2FLAC

Audio rates

CountRateChannels
83444100stereo
56048000stereo
23248000mono
17244100mono
2132000stereo
1722050stereo
924000stereo
132006stereo
116000stereo
143931stereo
144095stereo
196000mono
Total: 1850 encodes (total length 804 hours 50 minutes 59.52 seconds)
Last updated: 2011-07-25 (situation as of 1900Z).

sgrunt used the following to generate this list (requires mplayer):
 (
   for all in *.avi *.mkv *.mp4 *.ogm; do
     mplayer -identify -frames 0 $all >mpout
     fmt=`grep ID_VIDEO_FORMAT mpout | sed 's@.*=@@'`
     width=`grep ID_VIDEO_WIDTH mpout | sed 's@.*=@@'`
     height=`grep ID_VIDEO_HEIGHT mpout | sed 's@.*=@@'`
     echo $fmt, ${width}x$height
   done
 )|sort|uniq -c|sort -rn
When this list was maintained by Bisqwit, he used the following to create the listing (requires riffdump and mkvtoolnix):
(
for s in *.avi;do riffdump -nmovi "$s";done | \ 
   grep -a strf.*bits| grep -av 4[48][01]00x | \
   sed 's/.*bytes[^(]*(//;s/(.*, /, /;s/(.*//'
for s in *.mkv;do mkvinfo --summary "$s" |head -n 2|grep 'video, codec';done | \
   perl -pe 's/.*ID: (.*), def.*pixel width: (.*?), pixel height: (.*?),.*/\1, \2x\3/' | \
   perl -pe 's@V_MS/VFW/FOURCC \(FourCC: (.*?), 0x34363268\)@\1@'
) | sort|uniq -c|sort -rn

MovieStatistics/Codecs last edited by Ilari on 7/25/2011 7:25 PM
Page History Latest diff List referrers View Source