Question / Help ffmpeg command for remuxing like obs

Catakryst

New Member
I'd like to remux a bunch of recordings using powershell and have ffmpeg installed. In particular, I want to turn flv's into mp4's. I have around 100 recordings I want to remux.

Does obs studio use ffmpeg to remux? What command can I use to replicate that? I'm worried about edge cases like multiple tracks.
 

authorleon

New Member
Hello, I have tried this but it does not work. Can you advise please.

Code:
for /R %f IN (*.mkv) DO ffmpeg -i "%f" -c:v copy -c:a copy "%~nf.mp4"

I only get 1 audio track. I have used 5. Thank you
 
Last edited:
Top