Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(880)

Unified Diff: media/test/data/README

Issue 2226443002: Support multiple media tracks in MSE / ChunkDemuxer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed integer overflow Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/filters/stream_parser_factory.cc ('k') | media/test/data/green-a300hz.webm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/data/README
diff --git a/media/test/data/README b/media/test/data/README
index f731ab9efc9942ae72166f98039ac3178468431c..c29632ecb3b9c4eeb837d6ba2ef145de8cafb5d8 100644
--- a/media/test/data/README
+++ b/media/test/data/README
@@ -203,6 +203,17 @@ test-25fps.vp9.context
- Manually dumped from libvpx with bear-vp9.ivf and test-25fps.vp9. See
vp9_parser_unittest.cc for description of their format.
+// WebM files for testing multiple tracks.
+green-a300hz.webm - WebM file containing 12 seconds of solid green video + 300Hz sine wave audio
+red-a500hz.webm - WebM file containing 10 seconds of solid red video + 500Hz sine wave audio
+ - Created with the following commands:
+ ffmpeg -f lavfi -i color=c=green:size=160x120 -t 12 -c:v libvpx green.webm
+ ffmpeg -f lavfi -i color=c=red:size=320x240 -t 10 -c:v libvpx red.webm
+ ffmpeg -f lavfi -i "sine=frequency=300:sample_rate=48000" -t 12 -c:v libvpx a300hz.webm
+ ffmpeg -f lavfi -i "sine=frequency=500:sample_rate=48000" -t 10 -c:v libvpx a500hz.webm
+ ffmpeg -i green.webm -i a300hz.webm -map 0 -map 1 green-a300hz.webm
+ ffmpeg -i red.webm -i a500hz.webm -map 0 -map 1 red-a500hz.webm
+
// JPEG test files:
pixel-1280x720.jpg - Single MJEPG encoded frame of 1280x720, captured on Chromebook Pixel. This image does not have Huffman table.
peach_pi-1280x720.jpg - Single MJPEG encoded frame of 1280x720, captured on Samsung Chromebook 2(13"). This image has Huffman table.
« no previous file with comments | « media/filters/stream_parser_factory.cc ('k') | media/test/data/green-a300hz.webm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698