Hi dloko4778,
You need to set using constraints property with object facingMode as environment.
Below is the modified code.
function CameraT() {
Webcam.set({
width: 320,
height: 240,
image_format: 'jpeg',
jpeg_quality: 90,
constraints: { facingMode: "environment" }
});
Webcam.attach('#my_camera');
$("#btns-container").show();
$(".col-md-8").show();
$(".divsphotos").hide();
}