I have an old "stereo" movie as a mp4 file.
The sound is only in the left channel, the right channel is silent.
I'd like to use ffmpeg to copy the video stream :
ffmpeg -hide_banner -i video.mp4 -c:v copy ...
and convert the audio to mono by selecting only the left channel :
-map_channel 0.1.0 -map_channel -1
But that didn't change anything :-(
What is the correct ffmpeg command line for that ?
Is it also possible to do that whithout re-encoding ?