-
Hi, From a quick read through the material in the repo, it seems that demuxing with ffmpeg for further decoding purposes is already supported; but muxing for writing in a container such as mp4 is not. What are the options for getting a proper mp4 while encoding with VALI? Here is what I could think of:
Is there any recomendation on the best way to proceeed for this task? Best wishes, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @tvercaut PyAV works fine with VALI as well as with VPF because it basically can take any Annex B input. Muxing support isn’t something I’d like to avoid, it’s just not going to be much better than what PyAV does. Better out-of-the-box feature, but nothing unique anyway. I’m now knee deep into PySurface refactoring (adding proper DLPack support to kill PyTorchVideoCodec subproject). After that I can take muxing support, that’s not too much of a job. Alternatively, I’m happy to accept your MR on this topic ) |
Beta Was this translation helpful? Give feedback.
OK, thanks. I'll try PyAV then.