mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
9d43fe2e96
Implements #1565.
17 lines
443 B
Ruby
Executable File
17 lines
443 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
# T_526propedit_bibliographic_and_terminology_iso_639_2
|
|
describe "mkvpropedit / using bibliographic and terminology variants of ISO 639-2 codes"
|
|
|
|
test_merge "data/avi/v.avi", :keep_tmp => true
|
|
test "bibliographic" do
|
|
propedit tmp, "--edit track:a1 --set language=ger"
|
|
hash_tmp
|
|
end
|
|
|
|
test_merge "data/avi/v.avi", :keep_tmp => true
|
|
test "terminology" do
|
|
propedit tmp, "--edit track:a1 --set language=deu"
|
|
hash_tmp
|
|
end
|