View Single Post
Old 24th May 2019, 21:13   #14837  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
I would recommend using ffmpeg. It seems better at reading from mkv and also has a more feature-complete eac3 decoder IIRC.
Code:
ffmpeg -i "x.mkv" -map 0:a:0 "x.wav"
It can correct delays, too. Hope this is correct:
Code:
ffmpeg -i "x.mkv" -map 0:a:0 -af aresample=first_pts=0 "x.wav"
sneaker_ger is offline