mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-08 11:11:51 +00:00
15 lines
338 B
Ruby
15 lines
338 B
Ruby
|
#!/usr/bin/ruby -w
|
||
|
|
||
|
class T_280replace_one_byte_with_ebmlvoid < Test
|
||
|
def description
|
||
|
return "mkvpropedit / Replace one byte with en EbmlVoid"
|
||
|
end
|
||
|
|
||
|
def run
|
||
|
sys "cp data/mkv/sample-bug536.mkv #{tmp}"
|
||
|
sys "../src/mkvpropedit #{tmp} --edit track:v1 --set display-width=1600 --set display-height=768"
|
||
|
hash_tmp
|
||
|
end
|
||
|
end
|
||
|
|