i'm having issues with my code
I'm converting a input mxf with 1 stereo channel to a mxf output with 16 mono channels for tv broadcast equipment, which have a specific pattern like this:
[A1][A2][A3][A4][MUTE5][MUTE6][MUTE7][MUTE8][A9][A10][A11][A12][MUTE13][MUTE14][MUTE15][MUTE16]
so i made this:
ffmpeg -i shorttest.mxf -f lavfi -i anullsrc=channel_layout=mono -ac:0 1 -map_metadata -1 -map 0:v -map 0:a -map 0:a -map 1:a -map 1:a -map 1:a -map 1:a -map 0:a -map 0:a -map 1:a -map 1:a -map 1:a -map 1:a -vcodec mpeg2video -ar 48000 OUTPUT8CH.mxf
the problem is when i do that it stucks on the very last frame, consuming a lot of RAM and eventually crashing
`frame= 208 fps= 26 q=31.0 size= 13568kB time=00:26:50.28 bitrate= 69.0kbits/s speed=200x
so i'm trying to figure out what's wrong, can someone help me?