Well, we'll add this option in admin panel in our nearest S.L.P. update.
Right now you can do this trick. As you might now, "-3dswap" option does not work yet (mentioned
here). To
swap cameras you need to add "-cs 1" option in your capture sequence.
Our video-generating script is sitting here:
Code: Select all
/opt/StereoPi/scripts/video-source.sh
In row 71 you can see:
Code: Select all
./bin/raspivid -t 0 $DEC_STR $UP_DOWN -w $video_width -h $vid.........
Add "-cs 1" here, so beginning of this row will looks like this:
Code: Select all
./bin/raspivid -cs 1 -t 0 $DEC_STR $UP_DOWN -w $video_width -h $vid.........
Please notice, this option "-cs 1" is already added in row 32 and implemented if you set "up/down" option in admin panel. You can either disable this option in admin panel, or just fix this piece of code according to your needs.
UPD> This is my second answer to you with some code fixes requirements. Just a notice: you can do all these chages over Administration panel, using "file manager" icon. Do not forget to click a link "Make filesystem writeable" at the top of file manager, so your changes can be saved. By default filesystem in S.L.P. is read-only.
Eugene a.k.a. Realizator