| 1 |
2 |
kdv |
#!/bin/bash
|
| 2 |
|
|
#
|
| 3 |
|
|
# Script to retrieve conformance test bitstreams from the ISO web site
|
| 4 |
|
|
#
|
| 5 |
|
|
for bitstream in \
|
| 6 |
|
|
mei/MEI.stream16.long/MEI.stream16.long \
|
| 7 |
|
|
mei/MEI.stream16v2/MEI.stream16v2 \
|
| 8 |
|
|
ti/TI_cl_2/TI_c1_2.bits \
|
| 9 |
|
|
tek/Tek-5-long/conf4.bit \
|
| 10 |
|
|
tek/Tek-5.2/conf4.bit \
|
| 11 |
|
|
att/att_mismatch/att.bits \
|
| 12 |
|
|
lep/bits_conf_lep_11/bits_conf_lep_11.bits \
|
| 13 |
|
|
gi/gi4/video.bits \
|
| 14 |
|
|
gi/gi6/bit_stream \
|
| 15 |
|
|
gi/gi7/bit_stream \
|
| 16 |
|
|
gi/gi_9/bit_stream \
|
| 17 |
|
|
gi/gi_from_tape/gi_stream \
|
| 18 |
|
|
hhi/hhi_burst_long/hhi_burst_long.bits \
|
| 19 |
|
|
hhi/hhi_burst_short/hhi_burst_short.bits \
|
| 20 |
|
|
ibm/ibm-bw-v3/ibm-bw.BITS \
|
| 21 |
|
|
ccett/mcp10ccett/mcp10ccett.bits \
|
| 22 |
|
|
mei/mei.2conftest.4f/mei_2stream.4f \
|
| 23 |
|
|
mei/mei.2conftest.60f.new/mei_2stream.60f.new \
|
| 24 |
|
|
nokia/nokia6/nokia6_dual.bit \
|
| 25 |
|
|
nokia/nokia6/nokia6_dual_60.bit \
|
| 26 |
|
|
nokia/nokia_7/nokia7_dual.bit \
|
| 27 |
|
|
ntr/ntr_skipped_v3/ntr_skipped_v3.bits \
|
| 28 |
|
|
sony/sony-ct1/sony-ct1.bits \
|
| 29 |
|
|
sony/sony-ct2/sony-ct2.bits \
|
| 30 |
|
|
sony/sony-ct3/sony-ct3.bs \
|
| 31 |
|
|
toshiba/toshiba_DPall-0/toshiba_DPall-0.mpg \
|
| 32 |
|
|
tceh/tceh_conf2/conf2.bits \
|
| 33 |
|
|
tcela/tcela-10-killer/tcela-10.bits \
|
| 34 |
|
|
tcela/tcela-14-bff-dp/tcela-14.short.bits \
|
| 35 |
|
|
tcela/tcela-14-bff-dp/tcela-14.bits \
|
| 36 |
|
|
tcela/tcela-15-stuffing/tcela-15.bits \
|
| 37 |
|
|
tcela/tcela-17-dots/tcela-17.bits \
|
| 38 |
|
|
tcela/tcela-6-slices/tcela-6.bits \
|
| 39 |
|
|
tcela/tcela-7-slices/tcela-7.bits \
|
| 40 |
|
|
tcela/tcela-8-fp-dp/tcela-8.bits \
|
| 41 |
|
|
tcela/tcela-9-fp-dp/tcela-9.bits \
|
| 42 |
|
|
teracom/teracom_vlc4/teracom_vlc4.bin
|
| 43 |
|
|
do
|
| 44 |
|
|
wget --force-directories -nH --cut-dirs=6 http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_IEC_13818-4_2004_Conformance_Testing/Video/bitstreams/main-profile/$bitstream.gz ;
|
| 45 |
|
|
gunzip -v $bitstream.gz
|
| 46 |
|
|
done
|
| 47 |
|
|
#not truncated
|