I have started encoding, but have now gotten to making videos where multiple video streams need to be combined from a bluray source, into one video file - Does anyone know any programs for this, or any in depth guides on Remuxing / etc?
1. Posts must be related to the discussion of digital piracy
2. Don’t request invites, trade, sell, or self-promote
3. Don’t request or link to specific pirated titles, including DMs
4. Don’t submit low-quality posts, be entitled, or harass others
📜 c/Piracy Wiki (Community Edition):
💰 Please help cover server costs.
Ko-fi | Liberapay |
With ffmpeg
ffmpeg uses a sectioned parameter approach. Input parameters and input, optionally multiple, output parameters and output target.
In my example I specified copy as codec so the streams are copied as-is, without reencoding. I used map to map video streams 1 and 2 of the first input, and default/all audio streams.
The ffmpeg reference docs are thorough. The wiki has some more guide, example, and explanatory docs.