mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
929c4485d7
Seems the sample file contains "16" as the number of bits per sample in the audio track headers — which is obviously wrong for `in24`, which uses 24 bits per sample. So force it to 24 for that FourCC. Fixes #2391.
12 lines
328 B
Ruby
Executable File
12 lines
328 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
# T_652quicktime_pcm_in24
|
|
describe "mkvmerge / QuickTime with PCM with FourCC 'in24'"
|
|
|
|
file = "data/mp4/prores_apch-and-pcm_in24-short.mov"
|
|
|
|
test_merge file, :args => "--no-video", :keep_tmp => true
|
|
test "bitdepth is 24" do
|
|
identify_json(file)["tracks"][1]["properties"]["audio_bits_per_sample"] == 24
|
|
end
|