Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#1041 | Link | |
|
Registered User
Join Date: Feb 2015
Posts: 63
|
Quote:
|
|
|
|
|
|
|
#1042 | Link | ||
|
Registered User
Join Date: May 2023
Posts: 14
|
Having an odd issue using the Validate Disc feature with Mortal Kombat (2011). It works just fine when FindVUK is run as normal, but when I try to just validate it then after FindVUK seemingly successfully validates all 17 .m2ts files (though the log says 18 are detected?), it then throws an unknown error. Worth noting that I can play the blu-ray just fine using VLC. I can post full logs or additional details as needed, but here are some excerpts.
FindVUK no arguments run: Quote:
Quote:
|
||
|
|
|
|
|
#1045 | Link |
|
Registered User
Join Date: Jun 2023
Posts: 20
|
It stopped working because FindVUK expects the timestamp in keydb_fvhash.ini to be in yyyy.MM.dd HH:mm:ss format for delta mode, but something (presumably a recent server-side change) caused it to start writing yyyyMMddTHHmmssZ instead. FindVUK probably passes through the timestamp on write, but the current release cannot parse the new format on read.
|
|
|
|
|
|
#1053 | Link |
|
Registered User
Join Date: May 2004
Posts: 5,521
|
Just run this powershell script before you run the findvuk sync.
Code:
# Script to convert keydb_fvhash.ini timestamp format
# From: yyyyMMDDTHHmmssZ (e.g., 20260303T161635Z)
# To: yyyy.MM.dd HH:mm:ss (e.g., 2026.03.03 16:16:35)
$filePath = "$env:APPDATA\aacs\keydb_fvhash.ini"
if (-not (Test-Path $filePath)) {
Write-Error "File not found: $filePath"
exit 1
}
# Read the file
$content = Get-Content $filePath -Raw
# Replace timestamps in yyyyMMDDTHHmmssZ format with yyyy.MM.dd HH:mm:ss format
$content = $content -replace '(\d{4})(\d{2})(\d{2})T(\d{2})(\d{2})(\d{2})Z', '$1.$2.$3 $4:$5:$6'
# Write back to file
Set-Content -Path $filePath -Value $content -NoNewline
Write-Host "Timestamp format updated successfully!"
Get-Content $filePath
__________________
HTPC: Windows 11, AMD 5900X, RTX 3080, Pioneer Elite VSX-LX303, LG G2 77" OLED |
|
|
|
|
|
#1054 | Link | |
|
Registered User
Join Date: Aug 2006
Posts: 68
|
Quote:
|
|
|
|
|
|
|
#1055 | Link | |
|
Registered User
Join Date: Dec 2013
Posts: 547
|
Quote:
Finally I changed the order of the headers: first the UTC and next the other one - because FindVUK takes the last matching header. The next release will fix the header-bug correctly. In the meantime the changed order on the server fixed the problem a few hours ago. Another finding: my change also removed a feature where I thought nobody is using it: to specify a relative delta date like "-1day" - this is also fixed again. Last edited by nalor; Yesterday at 17:53. |
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|