mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-23 03:21:35 +00:00
10 lines
244 B
Ruby
10 lines
244 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
# T_543webvtt
|
||
|
describe "mkvmerge / WebVTT subtitles"
|
||
|
|
||
|
dir = "data/subtitles/webvtt"
|
||
|
|
||
|
(1..6).each { |idx| test_merge sprintf("%s/w3c-%03d.vtt", dir, idx) }
|
||
|
(1..2).each { |idx| test_merge sprintf("%s/mo-%03d.vtt", dir, idx) }
|