-
3D to 2D conversion with ffmpeg
I have a 3D video (AVCHD left, right side, with audio attached to left eye).
I convert it to 2D using …1/
ffmpeg -y -i 3D_V_.MP4 -r 20 -aspect 16:9
-vcodec mjpeg -qscale 1 -vf crop=960:1080:0:0 -acodec pcm_s16le -ac 2 l.avi2/
ffmpeg -y -i 3D_V_.MP4 -r 20 -aspect 16:9
-vcodec mjpeg -qscale 1 -vf crop=960:1080:960:0 -an r.avi3/
ffmpeg -y -i l.avi -i r.avi
-vcodec copy -acodec adpcm_ima_wav -ar 22050 -ab 32 -ac 2
-vcodec copy -map 0:0 -map 0:1 -map 1:0 HTD.AVIThis works great.
My question is: do I need the last step (#3)? step #2 actually produces a video+audio that works and I don’t see any visual differences. Thank you for your comments.