* support record audio and save to mp4

This commit is contained in:
lxowalle
2024-09-18 15:38:53 +08:00
parent e11f5c35f2
commit f679f85ee0
4 changed files with 363 additions and 27 deletions

View File

@@ -44,8 +44,9 @@ namespace maix::video
return err::ERR_NOT_IMPL;
}
video::Frame *Encoder::encode(image::Image *img) {
video::Frame *Encoder::encode(image::Image *img, Bytes *pcm) {
(void)img;
(void)pcm;
throw err::Exception(err::ERR_NOT_IMPL);
return nullptr;
}