Failure in step 2 (Muxing) #47
|
Hi, I'm currently trying out the tool to convert my 4k Bluray Remuxes to DV Profile 8.1 so the DV information is playable on Apple TV. The original file seems to be fine and plays without any issues. The last message before the failure line is the following: Is this any indication what the problem could be? Unfortunately, the log file doesn't say anything more. Does anyone have an idea or was facing a similar problem? |
Replies: 1 comment 14 replies
|
Hey @juzun31, it sounds like Can you give me some more information about your system? Are you running the container version? Or did you install directly on your system? What OS? Where are the files located (NAS or local HD)? Does this happen with all your files or just one/some? Also, please provide the exact dovi_convert command you used. If you are not using the container version, please make sure that all the dependencies like dovi_tool, mkvmerge etc. are up to date. Last but not least, the full debug log of dovi_convert could help. Please attach it (you can remove/replace filenames if you have privacy concerns). Cheers |
Glad to hear it works with the Docker container. Explore some of its setup options like temp storage on SSD for faster operations (full docs at docs.doviconvert.com)
As for disk space: Not sure why I didn't think of that earlier, but if you really only have 50 GB free space, that explains a lot. The original file is kept during conversion, and a new remux is created with roughly the same file size, plus some larger temp files. It would also explain why the log file got truncated.
So that was the most likely culprit. With --safe enabled, you hit that limit earlier, because instead of piping the movie data into dovi_tool, it stores it on disk, first.
Pretty sure if you tried again locally w…