mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
ffb32a657b
The features removed are: * mkvmerge: the options `--identify-verbose` (and its counterpart `-I`), `--identify-for-gui`, `--identify-for-mmg` and `--identification-format verbose-text` * all command line tools: the old, proprietary format used for option files * all command line tools: support for passing command line options via the environment variables `MKVTOOLNIX_OPTIONS`, `MKVEXTRACT_OPTIONS`, `MKVINFO_OPTIONS`, `MKVMERGE_OPTIONS`, and `MKVPROPEDIT_OPTIONS`
12 lines
322 B
Ruby
Executable File
12 lines
322 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
the_file = "data/mkv/deprecated-languages.mkv"
|
|
|
|
# T_378deprecated_iso_639_2_codes
|
|
describe "mkvmerge / handling deprecated ISO 639-2 language codes"
|
|
test "identification" do
|
|
identify_json(the_file)["tracks"].collect { |t| t["properties"]["language"] }.compact.sort.join('+')
|
|
end
|
|
|
|
test_merge the_file
|