metodo manuale per verificare se un mkv contiene header compresso (da terminale dare il comando)
mkvinfo nome_filmato.mkv | grep "Algorithm: 3 (header removal)"
-----------------------------------
interessante
app (ormai è un termine di moda) che permette di rimuovere gli header compressi dei vs *.mkv all'interno del wd
MKVtoolnix
Quote:
è un bin che si copia sulla vs periferica usb attaccata al wd e l'avrete a disposizione all'interno del wd
In app.bin - mkvmerge is normal version, mkvmerge2 is alternative version to remove zlib compression header
Usage:
Type in commandline:
mkvmerge2 -o <output file> <source file>
|
http://www.imagebanana.com/view/1tbfy8ok/pic01.jpg
http://www.imagebanana.com/view/1gbwnn8r/pic02.jpg
script
Quote:
I've written a simple bash script that runs under WDLXTV that remuxes an mkv with player_sct's mkvtoolnix app.bin to remove the header compression that causes WDTVs problems. It checks to see if remuxing is required and does this if it is needed, otherwise it just quits. You can also just check an mkv by running with the "-t" option
|
Quote:
find /download/test -type f -name "*.mkv" -exec zzmkv.sh -t {} \;
No header compression found on /download/test/E01 - title a.mkv
No header compression found on /download/test/E07 - title b.mkv
|