Closed zfeher closed 2 years ago
The demux
command can be used to remove RPUs.
I am aware that existing RPUs break injection, and so far it has been intended. Users should be aware of what is present in the files they use.
Implemented a warning when injecting and the input video contains an RPU in the first 100MB read. And when injecting, existing RPUs will not be written and thus wil be replaced by those injected.
Thank you for suggesting the demux
command, it solved the problem I have.
Thanks for the inject-rpu fix as well, it will be better user experience I think. Users can do wild/accidental things sometimes if allowed by the program.
Another idea came to my mind which could be nice to have feature one day:
convert
command is already capable to do RPU conversion on the fly as far as I saw. Of course working with videos with existing RPUs might not be a main use case to consider this.On the fly cropping (even editing if possible, maybe not all kind) without demuxing a video with existing RPU. Might improve performance.
This is already supported with convert
. Just use the --crop
flag.
I don't understand how it would have anything to do with performance.
Implementing "on the fly" edits is not something I'm interested in working on.
Ok, understood. Thanks for pointing out the solution again.
By performance I meant the extra demuxing: writing to storage takes time and space. But thankfully convert, and then crop already works without this overhead.
First of all thank you for this handy tool.
I found a bug (feature?) when I tried to fix a cropped encoded video with set active area offset, and it didn't work (black bars stayed). I extracted the RPU from the demuxed encoded video (with --crop option but also tried editing the RPU) and injected that back to the encoded video. This had no effect, no matter how I changed the active area offsets.
I got curious and did some testing on the tool. The first problem I've found that it cannot extract the rpu from the injected video. This lead to repeating the injection and see what happens. The file size always got bigger i.e. the RPU was injected multiple times somehow (the root problem). And the first original one is the one that the TV player read, and discarded the rest.
This bug can lead to new features like remove-rpu, replace-rpu etc which can be handy when we want to fix/edit a video with existing RPU. Or inject-rpu could do the replacement (silently, with a warn, etc) if existing RPU is found.