diff --git a/applications/gui/src/camera.cpp b/applications/gui/src/camera.cpp
index b735a5ea3372e08d23c464e1b0b65c54020bbd6f..f7e5e2cc2be16f88941795c9ea0d4324c7b5119c 100644
--- a/applications/gui/src/camera.cpp
+++ b/applications/gui/src/camera.cpp
@@ -806,6 +806,7 @@ void ftl::gui::Camera::startVideoRecording(const std::string &filename) {
 		record_stream_->setMode(ftl::stream::File::Mode::Write);
 		record_sender_ = ftl::create<ftl::stream::Sender>(screen_->root(), "videoEncode");
 		record_sender_->setStream(record_stream_);
+		record_sender_->value("codec", 2);  // Default H264
 	}
 
 	if (record_stream_->active()) return;
diff --git a/components/operators/src/clipping.cpp b/components/operators/src/clipping.cpp
index 26bc920b8f72275cc346c721df54292034beead8..7772fad3df68df868e8aaa3bf787144329df46e8 100644
--- a/components/operators/src/clipping.cpp
+++ b/components/operators/src/clipping.cpp
@@ -62,7 +62,6 @@ bool ClipScene::apply(ftl::rgbd::FrameSet &in, ftl::rgbd::FrameSet &out, cudaStr
 	std::vector<ftl::codecs::Shape3D> shapes;
 	if (in.hasChannel(Channel::Shapes3D)) {
 		in.get(Channel::Shapes3D, shapes);
-		LOG(INFO) << "Already has shapes: " << shapes.size();
 	}
 	shapes.push_back(shape);
 	in.create(Channel::Shapes3D, shapes);