I'll check thanks, the problem is well documented for WDTV Gen2
".mkv files (made with newer mkvtoolnix versions), which can't be played because the compression (compressed header) is now ON by default in mkvtoolnix."
Cheers
I had the MKV header issue and I'm on CFW but I have a work around.
Try this!
Download this and install
http://www.afterdawn.com/software/audio_video/video_editing/mkvtoolnix.cfm/v4_1_1
Create a new folder and call it anything.
Create a bat file in the folder and add in this text
REM Whipped up by TEKNO to fix MKV header compression issues on Standalone media players!
REM fixMKV version 1.2
REM Requires MKVToolnix v4.1.1 INSTALLED (it auto detects where)
@Echo OFF
cd "%~dp0"
SET KEY="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\mmg.exe"
FOR /F "tokens=2*" %%A IN ('REG QUERY %KEY%') DO SET MKVTOOLPATH=%%B
ECHO MKVToolnix found at %MKVTOOLPATH% > logging.txt
FOR /F "delims=*" %%A IN ('dir /b /s *.MKV') do CALL :MKVFIXMUX "%%A" "%MKVTOOLPATH%"
START "" logging.txt
GOTO :eof
:MKVFIXMUX
"mkvmerge.exe" -o "%~dpn1_fix.mkv" --engage keep_bitstream_ar_info -A -S --compression -1:none "%~dpnx1" -D -S --compression -1:none "%~dpnx1" -A -D --compression -1:none "%~dpnx1"
if not errorlevel 0 (
ECHO Failed on %~nx1 remux! >> logging.txt
goto :eof)
REM if exist "%~dpn1_fix.mkv" (
REM del "%~dpnx1")
ECHO Processing of %~nx1 successful! >> logging.txt
goto :eof
Save the file and put the MKV in the folder you're having trouble with. Run the Bat file and a new MKV will be created with fix at the end. Your new file should now work.