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 bear-320x240-video-only.webm - The video track of bear-320x240.webm. | 6 bear-320x240-video-only.webm - The video track of bear-320x240.webm. |
7 bear-320x240-audio-only.webm - The audio track of bear-320x240.webm. | 7 bear-320x240-audio-only.webm - The audio track of bear-320x240.webm. |
8 bear-vp9.webm - VP9 video only WebM file. | 8 bear-vp9.webm - VP9 video only WebM file. |
9 bear-vp9-opus.webm - VP9 Video with Opus Audio. | 9 bear-vp9-opus.webm - VP9 Video with Opus Audio. |
10 bear-vp8-webvtt.webm - WebM VP8 video with WebVTT subtitle track. | 10 bear-vp8-webvtt.webm - WebM VP8 video with WebVTT subtitle track. |
11 bear-1280x720_avt_subt_frag.mp4 - Fragmented bear_1280x720.mp4 with text track | 11 bear-1280x720_avt_subt_frag.mp4 - Fragmented bear_1280x720.mp4 with text track |
12 containing srt from bear-vp8-webvtt.webm as | 12 containing srt from bear-vp8-webvtt.webm as |
13 a 'subt' handler type. | 13 a 'subt' handler type. |
| 14 bear-1280x720_av_frag.mp4 - Fragmented bear_1280x720.mp4. |
| 15 bear-1280x720_av_frag-initsegment-mvhd_version_0-mvhd_duration_bits_all_set.mp4: |
| 16 Just the first initialization segment of bear-1280x720_av_frag.mp4, modified t
o |
| 17 have the mvhd version 0 32-bit duration field set to all 1's. |
14 bear-vp8a.webm - WebM VP8 video with alpha channel. | 18 bear-vp8a.webm - WebM VP8 video with alpha channel. |
15 bear-vp8a-odd-dimensions.webm - WebM VP8 video with alpha channel and odd dimens
ions. | 19 bear-vp8a-odd-dimensions.webm - WebM VP8 video with alpha channel and odd dimens
ions. |
16 bear-opus.webm - Opus Audio only WebM file. | 20 bear-opus.webm - Opus Audio only WebM file. |
17 bear-opus-end-trimming.webm - File to test end trimming. It has one byte | 21 bear-opus-end-trimming.webm - File to test end trimming. It has one byte |
18 artificially added so that there is maximum | 22 artificially added so that there is maximum |
19 padding at the end. It is an Opus Audio only WebM | 23 padding at the end. It is an Opus Audio only WebM |
20 file. | 24 file. |
21 no_streams.webm - Header, Info, & Tracks element from bear-320x240.webm slightly
corrupted so it looks | 25 no_streams.webm - Header, Info, & Tracks element from bear-320x240.webm slightly
corrupted so it looks |
22 like there are no tracks. | 26 like there are no tracks. |
23 nonzero-start-time.webm - Has the same headers as bear-320x240.webm but the firs
t cluster of this file | 27 nonzero-start-time.webm - Has the same headers as bear-320x240.webm but the firs
t cluster of this file |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 | 269 |
266 // Multi-track WebM file | 270 // Multi-track WebM file |
267 media/test/data/multitrack-3video-2audio.webm | 271 media/test/data/multitrack-3video-2audio.webm |
268 //Generated using following commands: | 272 //Generated using following commands: |
269 ffmpeg -f lavfi -i color=c=red:size=320x240 -t 5 -c:v libvpx red.webm | 273 ffmpeg -f lavfi -i color=c=red:size=320x240 -t 5 -c:v libvpx red.webm |
270 ffmpeg -f lavfi -i color=c=green:size=320x240 -t 5 -c:v libvpx green.webm | 274 ffmpeg -f lavfi -i color=c=green:size=320x240 -t 5 -c:v libvpx green.webm |
271 ffmpeg -f lavfi -i color=c=blue:size=160x120 -t 10 -c:v libvpx blue.webm | 275 ffmpeg -f lavfi -i color=c=blue:size=160x120 -t 10 -c:v libvpx blue.webm |
272 ffmpeg -f lavfi -i "sine=frequency=300:sample_rate=48000" -t 10 -c:v libvpx
a300hz.webm | 276 ffmpeg -f lavfi -i "sine=frequency=300:sample_rate=48000" -t 10 -c:v libvpx
a300hz.webm |
273 ffmpeg -f lavfi -i "sine=frequency=500:sample_rate=48000" -t 5 -c:v libvpx a
500hz.webm | 277 ffmpeg -f lavfi -i "sine=frequency=500:sample_rate=48000" -t 5 -c:v libvpx a
500hz.webm |
274 ffmpeg -i red.webm -i green.webm -i blue.webm -i a300hz.webm -i a500hz.webm
-map 0 -map 1 -map 2 -map 3 -map 4 multitrack-3video-2audio.webm | 278 ffmpeg -i red.webm -i green.webm -i blue.webm -i a300hz.webm -i a500hz.webm
-map 0 -map 1 -map 2 -map 3 -map 4 multitrack-3video-2audio.webm |
OLD | NEW |