I have a couple of 3d blu-ray rips I'd like to stream to a tv that is not 3d compatible. I have a samsung smart tv with an app that I made to stream the video locally. I'm using ffmpeg on my backend to transcode video. I'm curoius to see if ffmpeg can take a 3d sbs mkv and bake the 3d elements into a 2d image. That way the stream is still 3d even on non-compatible devices.
Asked
Active
Viewed 1,684 times
1 Answers
0
See the stereo3d filter. Example to convert input video from side by side parallel to anaglyph yellow/blue dubois:
ffmpeg -i input.mkv -map 0 -vf stereo3d=sbsl:aybd -c:a copy output.mkv
See many examples at FFmpeg Wiki: Stereoscopic.

llogan
- 121,796
- 28
- 232
- 243
-
Do you know by chance if ffmpeg has support for MVC-3D? – goodkid38 Oct 27 '20 at 02:54