ffprobe -hide_banner -i <source_file>
-
Getting a testing sample output
# Use `-t 120` for a 2 minutes sample ffmpeg -hide_banner -i <source_file> -t 120 <rest of arguments>...
-
Force overwrite of existing file
# Use -y to automatically answer Yes ffmpeg -hide_banner -i <source_file> -y <dest_file>
Stereo3D documentation can be see at http://underpop.online.fr/f/ffmpeg/help/stereo3d.htm.gz.
ffmpeg -hide_banner -i <source_file> -vf stereo3d=sbsl:ml -c:a copy <dest_file>
The sbsl
format doesn't work, try them all using output sample and check the one that fits better.
for in_mode in 'sbsl' 'sbsr' 'sbs2l' 'sbs2r' 'abl' 'abr' 'ab2l' 'ab2r' 'al' 'ar' 'irl' 'irr' 'icl' 'icr'; do ffmpeg -hide_banner -t 30 -i <source_file> -vf stereo3d="$in_mode:ml" -c:a copy -y "<dest_file>.$i.<ext>"; done