OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 bear-320x240.webm - WebM encode of bear.1280x720.mp4 resized to 320x240. | 5 bear-320x240.webm - WebM encode of bear.1280x720.mp4 resized to 320x240. |
6 no_streams.webm - Header, Info, & Tracks element from bear-320x240.webm slightly
corrupted so it looks | 6 no_streams.webm - Header, Info, & Tracks element from bear-320x240.webm slightly
corrupted so it looks |
7 like there are no tracks. | 7 like there are no tracks. |
8 nonzero-start-time.webm - Has the same headers as bear-320x240.webm but the firs
t cluster of this file | 8 nonzero-start-time.webm - Has the same headers as bear-320x240.webm but the firs
t cluster of this file |
9 is the second cluster of bear-320x240.webm. This creat
es the situation where | 9 is the second cluster of bear-320x240.webm. This creat
es the situation where |
10 the media data doesn't start at time 0. | 10 the media data doesn't start at time 0. |
(...skipping 22 matching lines...) Expand all Loading... |
33 bear-320x240-av_enc-av.webm - bear-320x240.webm with audio & video encrypted usi
ng key ID [1] and key [2]. | 33 bear-320x240-av_enc-av.webm - bear-320x240.webm with audio & video encrypted usi
ng key ID [1] and key [2]. |
34 bear-320x240-av_enc-av_clear-1s.webm - Same as bear-320x240-av_enc-av.webm but w
ith no frames in the first second encrypted. | 34 bear-320x240-av_enc-av_clear-1s.webm - Same as bear-320x240-av_enc-av.webm but w
ith no frames in the first second encrypted. |
35 bear-320x240-av_enc-av_clear-all.webm - Same as bear-320x240-av_enc-av.webm but
with no frames encrypted. | 35 bear-320x240-av_enc-av_clear-all.webm - Same as bear-320x240-av_enc-av.webm but
with no frames encrypted. |
36 bear-640x360-av_enc-av.webm - bear-640x360.webm with audio & video encrypted usi
ng key ID [1] and key [2]. | 36 bear-640x360-av_enc-av.webm - bear-640x360.webm with audio & video encrypted usi
ng key ID [1] and key [2]. |
37 bear-640x360-a_frag-cenc.mp4 - A fragmented MP4 version of the audio track of be
ar-640x360.mp4 encrypted (ISO CENC) using key ID [1] and key [2]. | 37 bear-640x360-a_frag-cenc.mp4 - A fragmented MP4 version of the audio track of be
ar-640x360.mp4 encrypted (ISO CENC) using key ID [1] and key [2]. |
38 bear-640x360-v_frag-cenc.mp4 - A fragmented MP4 version of the video track of be
ar-640x360.mp4 encrypted (ISO CENC) using key ID [1] and key [2]. | 38 bear-640x360-v_frag-cenc.mp4 - A fragmented MP4 version of the video track of be
ar-640x360.mp4 encrypted (ISO CENC) using key ID [1] and key [2]. |
39 | 39 |
40 [1] 30313233343536373839303132333435 | 40 [1] 30313233343536373839303132333435 |
41 [2] ebdd62f16814d27b68ef122afce4ae3c | 41 [2] ebdd62f16814d27b68ef122afce4ae3c |
42 | 42 |
| 43 // Container Tests (additional containers derived from bear.ogv) |
| 44 bear.ac3 -- created using "avconv -i bear.ogv -f ac3 -b 192k bear.ac3". |
| 45 bear.adts -- created using "avconv -i bear.ogv -f adts -strict experimental be
ar.adts". |
| 46 bear.aiff -- created using "avconv -i bear.ogv -f aiff bear.aiff". |
| 47 bear.asf -- created using "avconv -i bear.ogv -f asf bear.asf". |
| 48 bear.avi -- created using "avconv -i bear.ogv -f avi -b 192k bear.avi". |
| 49 bear.eac3 -- created using "avconv -i bear.ogv -f eac3 bear.eac3". |
| 50 bear.flac -- created using "avconv -i bear.ogv -f flac bear.flac". |
| 51 bear.flv -- created using "avconv -i bear.ogv -f flv bear.flv". |
| 52 bear.h261 -- created using "avconv -i bear.ogv -f h261 -s:0 cif bear.h261". |
| 53 bear.h263 -- created using "avconv -i bear.ogv -f h263 -s:0 cif bear.h263". |
| 54 bear.m2ts -- created using "avconv -i bear.ogv -f mpegts bear.m2ts". |
| 55 bear.mjpeg -- created using "avconv -i bear.ogv -f mjpeg bear.mjpeg". |
| 56 bear.mpeg -- created using "avconv -i bear.ogv -f mpeg bear.mpeg". |
| 57 bear.rm -- created using "avconv -i bear.ogv -f rm -b 192k bear.rm". |
| 58 bear.swf -- created using "avconv -i bear.ogv -f swf -an bear.swf". |
OLD | NEW |