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
1054H264256x224
158H264320x240
132H264160x144
130H264320x224
122H264240x160
100DIVX256x224
86H264256x240
34DIVX256x240
26H264256x192
21H264256x384
15H264640x400
14H264512x240
13H264304x224
12H264256x232
12DIVX320x240
11H264640x480
10H264448x336
9H264384x224
4H264384x288
3H264512x448
2H264368x240
2H264512x480
2DIVX256x232
2H264512x224
2H264344x232
2H2641920x1344
2H2641920x1440
2H264384x256
1H264256x448
1H264320x232
1H264224x384
1H264288x224
1H264852x480
1H264288x192
1H264256x416
1VP80640x480
1H264592x448
1H264768x224
1DIVX160x144
1H264256x400
1H264256x408
1DIVX240x160
1H264484x160
1H264768x384

Video codecs

CountCodec
1847H264
150DIVX
1VP80

Video sizes

CountSize
1154256x224
170320x240
133160x144
130320x224
123240x160
120256x240
26256x192
21256x384
15640x400
14256x232
14512x240
13304x224
12640x480
10448x336
9384x224
4384x288
3512x448
21920x1344
2512x480
21920x1440
2512x224
2344x232
2368x240
2384x256
1256x408
1224x384
1256x416
1320x232
1852x480
1256x448
1288x192
1768x224
1256x400
1592x448
1288x224
1768x384
1484x160

Audio codecs and rates

CountCodecRateChannels
272MP348000mono
262MP344100stereo
255AAC44100stereo
188Vorbis44100stereo
187AAC48000mono
171AAC44100mono
146MP344100mono
119AAC48000stereo
118MP348000stereo
95Vorbis48000mono
76Vorbis48000stereo
44Vorbis44100mono
11MP322050stereo
11MP332000stereo
8Vorbis32000stereo
8MP324000stereo
5MP322050mono
4AAC24000mono
3AAC22050stereo
2AAC32000stereo
2MP332000mono
2FLAC44100stereo
2AAC24000stereo
1Vorbis44095stereo
1AAC96000mono
1Vorbis22050stereo
1Vorbis43931stereo
1MP316000stereo
1Vorbis32006stereo
1Vorbis24000stereo

Audio codecs

CountCodec
836MP3
744AAC
416Vorbis
2FLAC

Audio rates

CountRateChannels
70744100stereo
55448000mono
36144100mono
31348000stereo
2132000stereo
1522050stereo
1124000stereo
522050mono
424000mono
232000mono
116000stereo
143931stereo
196000mono
132006stereo
144095stereo
Total: 1998 encodes (total length 874 hours 22 minutes 40.59 seconds)
Last updated: 2012-01-06 (situation as of 1600Z).

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 1/6/2012 4:11 PM
Page History Latest diff List referrers View Source