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

Unified Diff: media/test/data/README

Issue 2284923003: Implement support for multiple tracks in FFmpegDemuxer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/ffmpeg_demuxer_unittest.cc ('k') | media/test/data/multitrack-3video-2audio.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 499b97d8a004780ee25924305fbb4c091c0b38aa..f731ab9efc9942ae72166f98039ac3178468431c 100644
--- a/media/test/data/README
+++ b/media/test/data/README
@@ -248,3 +248,13 @@ media/test/data/bbb-320x240-2video-2audio.mp4
ffmpeg -i bbb_sunflower_1080p_30fps_normal.mp4 -f lavfi -i "sine=frequency=500:sample_rate=48000" -map 0:v -map 1:a -c:v libx264 -crf 36 -vf scale=320:240,vflip -c:a libfdk_aac -ac 2 -t 24 bbb2.mp4
// Combine the two files generated above into a single fragmented .mp4 file with 2 video and 2 audio tracks.
ffmpeg -i bbb1.mp4 -i bbb2.mp4 -map 0:0 -map 0:1 -map 1:0 -map 1:1 -c:v copy -c:a copy -movflags frag_keyframe+omit_tfhd_offset+separate_moof bbb-320x240-2video-2audio.mp4
+
+// Multi-track WebM file
+media/test/data/multitrack-3video-2audio.webm
+ //Generated using following commands:
+ ffmpeg -f lavfi -i color=c=red:size=320x240 -t 5 -c:v libvpx red.webm
+ ffmpeg -f lavfi -i color=c=green:size=320x240 -t 5 -c:v libvpx green.webm
+ ffmpeg -f lavfi -i color=c=blue:size=160x120 -t 10 -c:v libvpx blue.webm
+ ffmpeg -f lavfi -i "sine=frequency=300:sample_rate=48000" -t 10 -c:v libvpx a300hz.webm
+ ffmpeg -f lavfi -i "sine=frequency=500:sample_rate=48000" -t 5 -c:v libvpx a500hz.webm
+ 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
« no previous file with comments | « media/filters/ffmpeg_demuxer_unittest.cc ('k') | media/test/data/multitrack-3video-2audio.webm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698